linux-packaging-mono/mcs/tests/test-decl-expr-06.cs

17 lines
186 B
C#
Raw Normal View History

using System;
public class C
{
Func<bool> f = () => Foo (out int arg);
static bool Foo (out int arg)
{
arg = 2;
return false;
}
public static void Main ()
{
new C ();
}
}