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