X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ferrors%2Fcs0538.cs;h=a22cf4be25a07c46585993e6336d6259fa09c4c7;hb=ab0b591ca59d99a2370bf9f579b091c5edf09ae5;hp=f54901b51a241d0bd911b1ed5e2153c99d512fe1;hpb=0c31213775e39ade10a7ce318be98e2de362da12;p=mono.git diff --git a/mcs/errors/cs0538.cs b/mcs/errors/cs0538.cs index f54901b51a2..a22cf4be25a 100644 --- a/mcs/errors/cs0538.cs +++ b/mcs/errors/cs0538.cs @@ -1,13 +1,16 @@ -// cs0538.cs: `BaseClass' in explicit interface declaration is not an interface -// Line: 9 +// CS0538: The type `BaseClass' in explicit interface declaration is not an interface +// Line: 11 -class BaseClass { - public void Foo() {} +class BaseClass +{ + public void Foo() {} } -class InstanceClass: BaseClass { - void BaseClass.Foo() { - } +class InstanceClass: BaseClass +{ + void BaseClass.Foo() + { + } }