[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1019.cs
1 // CS1019: Overloadable unary operator expected
2 // Line: 18
3
4 public class MyClass {
5
6         public int this[int ndx] 
7         {
8                 get { }
9                 set { }
10         }
11
12         public event EventHandler Click 
13         {
14                 add { } 
15                 remove { }
16         }
17
18         public static MyClass operator/ (MyClass i)
19         {
20         
21         }
22
23         public static implicit operator MyClass (Object o)
24         {
25
26         }
27 }