2 // This test just verifies that we generate the proper signature for
3 // EndInvoke, something that we were not doing before in the presence
10 delegate int D (int x
, out int y
);
12 static int M (int x
, out int y
)
18 public static int Main ()
24 IAsyncResult ar
= del
.BeginInvoke (x
, out y
, null, null);
25 if (del
.EndInvoke (out y
, ar
) != 2)
30 Console
.WriteLine ("Test ok");