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: 19b93842187f29fe88e3a094bba29a22e219194c (plain)
1
2
3
4
5
6
7
// cs0524.cs: `Interface.Struct': Interfaces cannot declare classes, structs, interfaces, delegates, enumerations or constants
// Line: 5

interface Interface {
        public struct Struct {
        }
}