2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-anon-03.cs
blobc6f4032579b098d1c8043c50a9e2bda1dbc8baff
1 //
2 // Simple variable capturing
3 //
4 using System;
6 delegate void S ();
8 class X {
9 static void Main ()
11 int a = 1;
12 S b = delegate {
13 a = 2;
15 b ();
16 Console.WriteLine ("Back, got " + a);