[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-autoproperty-10.cs
blob036d9c3a43a7666eacc175149d0a4459049ecd83
1 // Compiler options: -langversion:experimental
2 struct S
4 public decimal P { get; } = -3;
7 class X
9 public static int Main ()
11 var s = new S ();
12 if (s.P != -3)
13 return 1;
15 return 0;