[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / errors / cs0527.cs
1 // CS0527: Type `X' in interface list is not an interface
2 // Line: 6
3 class X {
4 }
5
6 interface A : X {
7 }