Remove code moved to shared partition
[mono-project.git] / mcs / errors / cs1019.cs
bloba767e90372bf56f14d222989bf2b1b0cab2c8f0d
1 // CS1019: Overloadable unary operator expected
2 // Line: 18
4 public class MyClass {
6 public int this[int ndx]
8 get { }
9 set { }
12 public event EventHandler Click
14 add { }
15 remove { }
18 public static MyClass operator/ (MyClass i)
23 public static implicit operator MyClass (Object o)