Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-anon-45.cs
1 delegate void TestFunc (int val);
2
3 class A
4 {
5         public A(TestFunc func)
6         {
7                 func (0);
8         }
9 }
10
11 class TestClass
12 {
13         static int i = 1;
14         static readonly A a = new A(delegate(int a) { i = a; });
15
16         public static int Main ()
17         {
18                 return i;
19         }
20 }