cleol
[mcs.git] / tests / test-anon-24.cs
blob8b7169478281189cc5257b3424869c0fc903c83d
1 using System;
3 delegate int D ();
5 class X {
7 static void Main ()
9 D x = T (1);
11 Console.WriteLine ("Should be 2={0}", x ());
14 static D T (int a)
16 D d = delegate {
17 a = a + 1;
18 return a;
21 return d;