add SafeSerializationEventArgs
[mcs.git] / tests / gtest-lambda-17.cs
blob044b9a3cb3e24dbdd9b98064459171f7a4e30204
1 using System;
3 class TestCase
5 string a;
6 string b;
7 string c;
9 public void Testing ()
11 string z = a + b + "blah1" + c + "blah2";
12 Action test = () => {
13 string x = a;
15 test ();
18 public static void Main ()
20 new TestCase ().Testing ();