[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0557-2.cs
1 // CS0557: Duplicate user-defined conversion in type `C'
2 // Line: 9
3 class C {
4                 public static bool operator != (C a, C b) 
5                 {
6                         return true;
7                 }
8                 
9                 public static bool operator != (C a, C b) 
10                 {
11                         return true;
12                 }
13         
14                 public static bool operator == (C a, C b)
15                 {       return false; }         
16         }
17
18
19
20
21
22 class X {
23         static void Main ()
24         {
25         }
26 }