[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0619-38.cs
1 // CS0619-38: `ObsoleteEnum' is obsolete: `ooo'
2 // Line: 14
3
4 using System;
5
6 [Obsolete("ooo", true)]
7 enum ObsoleteEnum
8 {
9     value_A
10 }
11
12 class C
13 {
14     static ObsoleteEnum oe = ObsoleteEnum.value_A;
15 }