cleol
[mcs.git] / errors / cs0592-2.cs
blob35b78df1682b45fc9e81cda9041124bfec159d6d
1 // cs0592-2.cs: 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 ()