Files
linux-packaging-mono/mcs/tests/test-708.cs

14 lines
198 B
C#
Raw Normal View History

public class A
{
public delegate ADelegate ADelegate (bool ok);
public static ADelegate Delegate2 (bool ok)
{
return ok ? Delegate2 : (ADelegate) null;
}
public static void Main ()
{
}
}