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

class A: System.Attribute
{
	[System.Obsolete("!!!", true)]
	public string Prop {
		set { }
		get { return ""; }
	}
}

[A(Prop="System.String.Empty")]
class Obsolete {
}