[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0108-3.cs
blob6820e99fb042f66a4ff497952366c8ccdc98739f
1 // CS0108: `O.InnerAttribute' hides inherited member `Base.InnerAttribute()'. Use the new keyword if hiding was intended
2 // Line: 12
3 // Compiler options: -warnaserror -warn:2
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 {
19 class D {
20 static void Main () {}