summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0109.cs
blob: ec88ff891ae3a900fd713f934178a78aefc950d7 (plain)
1
2
3
4
5
6
7
// CS0109: 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;
}