This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / errors / cs0108-3.cs
1 // cs0108.cs: The new keyword is required on 'O.InnerAttribute()' because it hides inherited member
2 // Line: 11
3
4 using System;
5
6 public class Base
7 {
8     public void InnerAttribute () {}
9 }
10
11 class O: Base
12 {
13     [AttributeUsage(AttributeTargets.Class)]
14     public sealed class InnerAttribute: Attribute {
15     }        
16 }