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

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

class BaseClass {
        public new int Location;
}