2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0658.cs
blobebcf50023fb4fb36789368f283bb5ebcf5cd25ad
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
5 public class MyClass {
7 delegate int MyDelegate (int i, int j);
9 [blah:Help("blah")]
10 public static MyClass operator/ (MyClass i, MyClass j)
15 public static implicit operator MyClass (Object o)