Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0524.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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 {
        }
}