updating to the latest module.
[mono.git] / mcs / errors / cs0524.cs
1 // cs0524.cs: 'Struct' : interfaces cannot declare types
2 // Line: 5
3
4 interface Interface {
5         public struct Struct {
6         }
7 }