Align libgc vcxproj with makefile.
[mono.git] / mcs / errors / cs0619-52.cs
1 // CS0619: `C' is obsolete: `x'
2 // Line: 24
3
4 using System;
5
6 interface I
7 {
8 }
9
10 [Obsolete ("x", true)]
11 class C
12 {
13         public void Foo () { }
14 }
15
16 class M
17 {
18         public static void Main ()
19         {
20         }
21
22         public void Test (C c)
23         {
24                 c.Foo ();
25         }
26 }