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

interface Interface {
        delegate void D ();
}