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