2 // Parameter and return value compilation tests for anonymous methods
4 delegate void D (int x
);
5 delegate void E (out int x
);
7 delegate void F (params int[] x
);
12 // This should create an AnonymousMethod with the implicit argument
14 D d2
= delegate (int a
) {};
17 F f2
= delegate (int[] a
) {};