copying the latest Sys.Web.Services from trunk.
[mono.git] / mcs / errors / cs0540.cs
1 // cs0540.cs: containing class does not implement interface
2 // Line:
3
4 interface A {
5 }
6
7 class B {
8         void A.B () {}
9
10         static void Main () {}
11 }