* HttpChannel.cs, HttpClientChannel.cs, HttpHelper.cs, HttpServer.cs,
[mono.git] / mcs / errors / cs0527.cs
1 // cs0527:  type in interface list is not an interface
2 // Line: 6
3 class X {
4 }
5
6 interface A : X {
7 }