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: 2e671b25b3917f1671733d6459414cdcbe1e88df (plain)
1
2
3
4
5
6
7
8
9
// cs0549.cs: New virtual member `SealedClass.Foo()' is declared in a sealed class `SealedClass'
// Line: 5

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