2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0538.cs
bloba22cf4be25a07c46585993e6336d6259fa09c4c7
1 // CS0538: The type `BaseClass' in explicit interface declaration is not an interface
2 // Line: 11
4 class BaseClass
6 public void Foo() {}
9 class InstanceClass: BaseClass
11 void BaseClass.Foo()