* ExternTable.cs (ExternTable.GetModuleTypeRef): 'module_table' can be
[mcs.git] / errors / cs0592-2.cs
bloba7d8514babaadf5598b1a53063c6cea9b76948ac
1 // cs0592-2.cs: Attribute `MyAttribute' 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 ()