New test.
[mono.git] / mcs / errors / cs0524-5.cs
1 // cs0524-5.cs: `Interface.D': Interfaces cannot declare classes, structs, interfaces, delegates, enumerations or constants
2 // Line: 5
3
4 interface Interface {
5         delegate void D ();
6 }