[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0019-30.cs
1 // CS0019: Operator `!=' cannot be applied to operands of type `Test.DelegateA' and `Test.DelegateB'
2 // Line: 13
3
4 using System;
5
6 public class Test
7 {
8         public delegate int DelegateA(bool b);
9         public delegate int DelegateB(bool b);
10
11         static bool TestCompare (DelegateA a, DelegateB b)
12         {
13                 return a != b;
14         }
15 }