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

cs0619-48.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3c0f15168bb855426c6de50535876af6b6fba179 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// cs0619-48.cs: `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 {
}