* MonthCalendar.cs:
[mono-project.git] / mcs / tests / 2test-a5.cs
blob290ebe2b8df7e2ad78bdcaf158068f7e279e1771
1 delegate void S ();
2 using System;
4 class X {
5 static void Main ()
7 int a = 1;
8 S b = delegate {
9 float f = 1;
10 Console.WriteLine (a);
11 if (f == 2)
12 return;
14 b ();
15 Console.WriteLine ("Back, got " + a);