[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0019-28.cs
1 // CS0019: Operator `>=' cannot be applied to operands of type `ulong' and `sbyte'
2 // Line: 7
3
4 class X {
5         bool ret (ulong u, sbyte s)
6         {
7                 return (u >= s);
8         }
9 }