* man/mono-shlib-cop.1: Add man page for mono-shlib-cop program.
[mono.git] / mcs / tests / 2test-18.cs
1 public class Foo {
2         delegate Inner foo_fn(string s);
3         public static void Main()
4         {
5                 foo_fn f = delegate (string s) {
6                         return new Inner(s + s);
7                 };
8                 f ("Test");
9         }
10
11         class Inner
12         {
13                 public Inner (string s)
14                 { }
15         }
16 }