linux-packaging-mono/mcs/tests/test-anon-173.cs

18 lines
192 B
C#
Raw Normal View History

using System;
class MainClass
{
public static void Main ()
{
SomeMethod (() => {
Func<int,int> f = b => b;
retry:
goto retry;
});
}
static void SomeMethod (Action a)
{
}
}