Merge pull request #487 from mayerwin/patch-1
[mono.git] / mcs / tests / gtest-lambda-26.cs
1 using System;
2
3 class C
4 {
5         public static void Main ()
6         {
7                 Execute (() => {
8                           int a, b;
9                   });
10         }
11
12         public static void Execute (Action action) { }
13 }