Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-371.cs
1 public class X
2 {
3         public X (out bool hello)
4         {
5                 hello = true;
6         }
7
8         public static void Main ()
9         { }
10 }
11
12 public class Y : X
13 {
14         public Y (out bool hello)
15                 : base (out hello)
16         { }
17 }