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

cs0238.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2eaf2ec44400099876a555e5c72274d49736f038 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0238.cs: 'DerivedClass.Show()' cannot be sealed because it is not an override
// Line: 10

class BaseClass {
        void Show() {}
}

class DerivedClass: BaseClass {
        sealed void Show() {}
            
        static void Main() {}
}