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