18 lines
179 B
C#
Raw Normal View History

public class X
{
public X (out bool hello)
{
hello = true;
}
public static void Main ()
{ }
}
public class Y : X
{
public Y (out bool hello)
: base (out hello)
{ }
}