[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0619-13.cs
1 // CS0619: `Obsolete' is obsolete: `'
2 // Line: 11
3
4 [System.Obsolete("", true)]
5 class Obsolete {
6 }
7
8 class MainClass {
9         public static void Main ()
10         {
11                 System.Type t = typeof (Obsolete);
12         }
13 }