Align libgcmonosgen vcxproj with makefile.
[mono.git] / mcs / errors / cs0619-21.cs
1 // CS0619: `Obsolete' is obsolete: `'
2 // Line: 12
3 // Compiler options: -unsafe
4
5 [System.Obsolete("", true)]
6 struct Obsolete {
7 }
8
9 class MainClass {
10         unsafe public static void Main ()
11         {
12                 System.Console.WriteLine (sizeof (Obsolete));
13         }
14 }