[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-179.cs
blobb8a170fe72e16663ad232804bfeda6bec4c8cfcb
1 public class X<T> {
2 public static int i {
3 get { return 0; }
4 private set { }
6 public static int myMain ()
8 return i++;
11 public class Y {
12 public static int Main ()
14 return X<Y>.myMain ();