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

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

class A: System.Attribute
{
	[System.Obsolete("!!!", true)]
	public int Field;
}

class Obsolete {
	[A(Field=2)]
	public int Foo;
}