summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0524.cs
blob: 9c9ff28c5942f441eb34b4cfca9464e1f7a36e82 (plain)
1
2
3
4
5
6
7
// CS0524: Interfaces cannot declare classes, structs, interfaces, delegates, or enumerations
// Line: 5

interface Interface {
        public struct Struct {
        }
}