[loader] LoadFrom of problematic images should reprobe
[mono-project.git] / mcs / errors / cs0619-38.cs
blob9b8c3c00c82c5c2b63ead469dbbac05ea2210334
1 // CS0619-38: `ObsoleteEnum' is obsolete: `ooo'
2 // Line: 14
4 using System;
6 [Obsolete("ooo", true)]
7 enum ObsoleteEnum
9 value_A
12 class C
14 static ObsoleteEnum oe = ObsoleteEnum.value_A;