[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git] / mcs / errors / cs0118-5.cs
blob3e942b44738e882db0ad0cf8ac7afb5d968ffc36
1 // CS0118: `A.s' is a `field' but a `type' was expected
2 // Line: 11
4 class A
6 public string s;
9 class X : A
11 s MyProperty {
12 get {
13 return s;