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

interface Interface {
        public class C {
        }
}