[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-371.cs
blob052c5f352a8f1f118f90b2db01a0b4f0f4ca9d3b
1 public class X
3 public X (out bool hello)
5 hello = true;
8 public static void Main ()
9 { }
12 public class Y : X
14 public Y (out bool hello)
15 : base (out hello)
16 { }