linux-packaging-mono/mcs/tests/gtest-lambda-26.cs

13 lines
151 B
C#
Raw Normal View History

using System;
class C
{
public static void Main ()
{
Execute (() => {
int a, b;
});
}
public static void Execute (Action action) { }
}