Updated project.
[mono.git] / mcs / errors / cs0108-9.cs
1 // cs0108.cs: The new keyword is required on 'Outer.Inner' because it hides inherited member
2 // Line: 13
3
4 public class Base
5 {
6     public int Inner { set { } }
7 }
8
9 class Outer: Base
10 {
11     public void M () {}
12     
13     public class Inner
14     {
15     }
16 }