* man/mono-shlib-cop.1: Add man page for mono-shlib-cop program.
[mono.git] / mcs / tests / a-simple.cs
1 //
2 // Parameter and return value compilation tests for anonymous methods
3 //
4 delegate void D (int x);
5 delegate void E (out int x);
6
7 class X {
8         static int Main ()
9         {
10                 // This should create an AnonymousMethod with the implicit argument
11                 D d1 = delegate {};
12                 D d2 = delegate (int a) {};
13
14                 return 0;
15         }
16 }