X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ferrors%2Fcs0619-48.cs;h=5f128efa7ce19ccde8f444f5abd497da83809cd5;hb=4058c2be43ec605cdcc57e9d678251339349cb5f;hp=3c0f15168bb855426c6de50535876af6b6fba179;hpb=881f83658281916d8f0784df7c726ecb7cc289db;p=mono.git diff --git a/mcs/errors/cs0619-48.cs b/mcs/errors/cs0619-48.cs index 3c0f15168bb..5f128efa7ce 100644 --- a/mcs/errors/cs0619-48.cs +++ b/mcs/errors/cs0619-48.cs @@ -1,15 +1,15 @@ -// cs0619-48.cs: `A.Prop' is obsolete: `!!!' -// Line: 13 +// CS0619-48: `A.Prop' is obsolete: `!!!' +// Line: 13 class A: System.Attribute -{ - [System.Obsolete("!!!", true)] - public string Prop { - set { } - get { return ""; } +{ + [System.Obsolete("!!!", true)] + public string Prop { + set { } + get { return ""; } } } - -[A(Prop="System.String.Empty")] -class Obsolete { + +[A(Prop="System.String.Empty")] +class Obsolete { }