[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0592-2.cs
blob4f573a1d564357f1cd55d9c103f4a3383be742e8
1 // CS0592: The attribute `MyAttributeAttribute' is not valid on this declaration type. It is valid on `interface' declarations only
2 // Line : 8
4 using System;
6 public interface ITest
8 [MyAttribute]
9 void Method();
12 [AttributeUsage (AttributeTargets.Interface)]
13 public class MyAttributeAttribute : Attribute
17 public class Foo {
19 public static void Main ()