* CheckBox.cs: Do not change the status of a checkbox when there
[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 }