eol
[mcs.git] / tests / test-541.cs
blob60f0ca137811cd564d92073a84e22eb2e485abf2
1 delegate void TestFunc (int val);
3 class A
5 public A(TestFunc func)
7 func (0);
11 class TestClass
13 static int i = 1;
14 static readonly A a = new A(delegate(int a) { i = a; });
16 static int Main ()
18 return i;