2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0619-48.cs
blob3c0f15168bb855426c6de50535876af6b6fba179
1 // cs0619-48.cs: `A.Prop' is obsolete: `!!!'
2 // Line: 13
4 class A: System.Attribute
6 [System.Obsolete("!!!", true)]
7 public string Prop {
8 set { }
9 get { return ""; }
13 [A(Prop="System.String.Empty")]
14 class Obsolete {