X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ferrors%2Fcs0525.cs;h=9e225c6dedb7bf79ee359760ca248b1dfb97d49c;hb=cfa6ff88d1d55bb54aa6cb25a26dbabe00e9db83;hp=8a915987c2b16cac31514ff8c727a35beed2ed97;hpb=93703b4ef8bdcf1d6cf336e14f534454221730c5;p=mono.git diff --git a/mcs/errors/cs0525.cs b/mcs/errors/cs0525.cs index 8a915987c2b..9e225c6dedb 100644 --- a/mcs/errors/cs0525.cs +++ b/mcs/errors/cs0525.cs @@ -1,5 +1,7 @@ -// cs0525.cs: Interfaces cannot contain fields -// Line: 5 -interface Interface { +// CS0525: Interfaces cannot contain fields or constants +// Line: 6 + +interface Interface +{ bool value = false; -} \ No newline at end of file +}