2007-01-11 Jonathan Pobst <jpobst@novell.com>
[mono.git] / mcs / errors / cs0539.cs
1 // cs0539.cs: `A.B' in explicit interface declaration is not a member of interface
2 // Line:
3
4 interface A {
5 }
6
7 class X : A {
8         void A.B () {}
9         static void Main () {}
10 }