TaskAwaiter from CoreFX
[mono-project.git] / mcs / errors / cs1020.cs
blob45672348bcc8688d4d42c88996c1b1f21458ee34
1 // CS1020: Overloadable binary operator expected
2 // Line: 19
5 public class MyClass {
7 public int this[int ndx]
9 get { }
10 set { }
13 public event EventHandler Click
15 add { }
16 remove { }
19 public static MyClass operator++ (MyClass i, MyClass j)
24 public static implicit operator MyClass (Object o)