Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

20 lines
373 B
C#

// CS0658: `blah' is invalid attribute target. All attributes in this attribute section will be ignored
// Line : 9
// Compiler options: -warnaserror -warn:1
public class MyClass {
delegate int MyDelegate (int i, int j);
[blah:Help("blah")]
public static MyClass operator/ (MyClass i, MyClass j)
{
}
public static implicit operator MyClass (Object o)
{
}
}