summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0619-47.cs
blob: a315257c42766b267113b5930de42803a2df12fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0619-47: `A.Field' is obsolete: `!!!'
// Line: 11

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

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