2010-05-27 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / errors / cs0527-2.cs
1 // cs0527-2.cs: Type `A' in interface list is not an interface
2 // Line: 7
3
4 struct A : B {
5 }
6
7 struct B : A {
8 }