2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-371.cs
blobae7d46df6d6efb14a257a70ea501789bf34ba08a
1 public class X
3 public X (out bool hello)
5 hello = true;
8 static void Main ()
9 { }
12 public class Y : X
14 public Y (out bool hello)
15 : base (out hello)
16 { }