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

interface Interface {
        interface I {}
}