[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / errors / cs0188-2.cs
blob6ec3fa7a017051c503c2e86686116bbd13a467bf
1 // CS0188: The `this' object cannot be used before all of its fields are assigned to
2 // Line: 10
4 struct B
6 public int a;
8 public B (int foo)
10 Test ();
13 public void Test ()