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

cs0549.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 466b01fde4ad654d6886574a2dafc114576d0466 (plain)
1
2
3
4
5
6
7
8
9
// cs0549.cs: 'SealedClass.Foo()' is a new virtual member in sealed class 'SealedClass'
// Line: 5

sealed class SealedClass {
        protected virtual void Foo() {
        }
}