Merge pull request #5082 from kumpera/fix-ro-fs-file-delete
[mono.git] / mcs / errors / cs0108-9.cs
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
4
5 public class Base
6 {
7     public int Inner { set { } }
8 }
9
10 class Outer: Base
11 {
12     public void M () {}
13     
14     public class Inner
15     {
16     }
17 }