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

cs0524-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 272a25acfba0044ed5ba5cadfef811b9b9e8d90f (plain)
1
2
3
4
5
6
7
// cs0524.cs: 'C' : interfaces cannot declare types
// Line: 5

interface Interface {
        public class C {
        }
}