Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-710.cs
1 // Compiler options: -warnaserror -warnaserror-:612,219
2
3 using System;
4
5 [Obsolete]
6 class Z
7 {
8 }
9
10 class C
11 {
12         public static void Main ()
13         {
14                 Z z = new Z ();
15         }
16 }