[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git] / mcs / tests / test-anon-13.cs
blob2c24abb8421e762039078b6db90069e19956476e
1 using System;
3 delegate void D ();
5 class X {
6 public static void Main ()
8 X x = new X (1);
9 X y = new X (100);
10 D a = x.T ();
11 D b = y.T ();
13 a ();
14 b ();
17 X (int start)
19 ins = start;
22 int ins;
24 D T ()
26 D d = delegate () {
27 Console.WriteLine ("My state is: " + CALL ());
30 return d;
32 string CALL ()
34 return "GOOD";