[corlib] Add a special method for XI so the linker does not always have to generate it.
[mono-project.git] / mcs / errors / cs0619-49.cs
blobaca6b307f9785445d2b947f8ad7d476b284b7bba
1 // CS0619-49: `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 {