[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0619-54.cs
1 // CS0619: `A' is obsolete: `msg'
2 // Line: 21
3
4 using System;
5
6 [Obsolete ("msg", true)]
7 class A
8 {
9         public class M
10         {
11                 public static void Foo ()
12                 {
13                 }
14         }
15 }
16
17 class C
18 {
19         public static void Main ()
20         {
21                 A.M.Foo ();
22         }
23 }