2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0108-9.cs
blob36b416a7daaded5d6a8b3f31e61814409f55c352
1 // cs0108-9.cs: `Outer.Inner' hides inherited member `Base.Inner'. Use the new keyword if hiding was intended
2 // Line: 13
3 // Compiler options: -warnaserror -warn:2
5 public class Base
7 public int Inner { set { } }
10 class Outer: Base
12 public void M () {}
14 public class Inner