summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0109-2.cs
blob: 980b67c13dcbe61551ece4d55b59e4fdb5be12ba (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 { set { } }
}