2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0619-49.cs
blobd719f512c5c969e03a32f3648209c9c4a3cd1492
1 // cs0619-49.cs: `A.A(string[])' is obsolete: `!!!'
2 // Line: 12
4 class A: System.Attribute
6 [System.Obsolete("!!!", true)]
7 public A (string[] s)
12 [A(new string[0])]
13 class Obsolete {