Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0619-49.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d719f512c5c969e03a32f3648209c9c4a3cd1492 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs0619-49.cs: `A.A(string[])' is obsolete: `!!!'
// Line: 12

class A: System.Attribute
{
	[System.Obsolete("!!!", true)]
	public A (string[] s)
	{
	}
}

[A(new string[0])]
class Obsolete {
}