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

cs0524-5.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9300143b99fcdea8fea4936218159e21504ed04b (plain)
1
2
3
4
5
6
// CS0524: Interfaces cannot declare classes, structs, interfaces, delegates, or enumerations
// Line: 5

interface Interface {
        delegate void D ();
}