[SRE] Improved token fixups processing.
[mono.git] / mcs / errors / cs0619-58.cs
1 // CS0619: `S.S()' is obsolete: `ctor'
2 // Line: 18
3
4 using System;
5
6 struct S
7 {
8         [Obsolete ("ctor", true)]
9         public S ()
10         {
11         }
12 }
13
14 class C
15 {
16         public static void Main ()
17         {
18                 new S ();
19         }
20 }