[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git] / mcs / errors / cs0619-39.cs
blob0f30a0d600d75143315c508e163fd3218bac14b4
1 // CS0619-39: `C.ob' is obsolete: `ooo'
2 // Line: 13
4 using System;
6 class C
8 [Obsolete("ooo", true)]
9 const int ob = 4;
11 public int Prop {
12 get {
13 return ob;