* support-test-*.cs: Rename from test-*-p2.cs.
[mono.git] / mcs / errors / cs0524-4.cs
1 // cs0524-4.cs: `Interface.C': Interfaces cannot declare classes, structs, interfaces, delegates, enumerations or constants
2 // Line: 5
3
4 interface Interface {
5         public class C {
6         }
7 }