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

cs0109-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 291f314fdaf4ead7ab9b38a145aa1ed436200462 (plain)
1
2
3
4
5
6
7
// cs0109-3.cs: The member `BaseClass.Val' does not hide an inherited member. The new keyword is not required
// Line: 6
// Compiler options: -warnaserror -warn:4

class BaseClass {
        public new const bool Val = false;
}