[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0619-31.cs
1 // CS0619-31: `ObsoleteEnum' is obsolete: `Is obsolete'
2 // Line: 15
3
4 using System;
5
6 [Obsolete("Is obsolete", true)]
7 enum ObsoleteEnum
8 {
9     value_B
10 }
11
12 class MainClass {
13     public static void Main ()
14     {
15         Console.WriteLine (ObsoleteEnum.value_B);
16     }
17 }