Bump API snapshot submodule
[mono.git] / mcs / errors / cs0658.cs
1 // CS0658: `blah' is invalid attribute target. All attributes in this attribute section will be ignored
2 // Line : 9
3 // Compiler options: -warnaserror -warn:1
4
5 public class MyClass {
6
7         delegate int MyDelegate (int i, int j);
8         
9         [blah:Help("blah")]
10         public static MyClass operator/ (MyClass i, MyClass j)
11         {
12         
13         }
14
15         public static implicit operator MyClass (Object o)
16         {
17
18         }
19 }