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: 07d9b280ca66aa5f25811ac3eda670aa7272c64a (plain)
1
2
3
4
5
6
7
// cs0524.cs: 'Struct' : interfaces cannot declare types
// Line: 5

interface Interface {
        public struct Struct {
        }
}