Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-lambda-17.cs
1 using System;
2
3 class TestCase
4 {
5         string a;
6         string b;
7         string c;
8
9         public void Testing ()
10         {
11                 string z = a + b + "blah1" + c + "blah2";
12                 Action test = () => {
13                         string x = a;
14                 };
15                 test ();
16         }
17
18         public static void Main ()
19         {
20                 new TestCase ().Testing ();
21         }
22 }