Revert "doh, miscopied file names."
[mono-project.git] / mcs / errors / cs0108-9.cs
blobbeb4ead90bd9b81f321aa35d047dcdf81c7c4ef9
1 // CS0108: `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