**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs0108-3.cs
blobd3c28cbd9ebc6d2bbafe9e8597e5d59da19e9bf0
1 // cs0108.cs: The new keyword is required on 'O.InnerAttribute()' because it hides inherited member
2 // Line: 12
3 // Compiler options: -t:library
5 using System;
7 public class Base
9 public void InnerAttribute () {}
12 class O: Base
14 [AttributeUsage(AttributeTargets.Class)]
15 public sealed class InnerAttribute: Attribute {