[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0619-32.cs
1 // CS0619-32: `E.item_a' is obsolete: `Obsolete enum'
2 // Line: 10
3 // Compiler options: -reference:CS0619-32-lib.dll
4
5 using System;
6
7 class MainClass {
8     public static void Main ()
9     {
10         Console.WriteLine (E.item_a);
11     }
12 }