Updated with review feedback.
[mono.git] / mcs / errors / cs0619-49.cs
1 // CS0619-49: `A.A(string[])' is obsolete: `!!!'
2 // Line: 12
3
4 class A: System.Attribute
5 {
6         [System.Obsolete("!!!", true)]
7         public A (string[] s)
8         {
9         }
10 }
11
12 [A(new string[0])]
13 class Obsolete {
14 }