Merge pull request #3769 from evincarofautumn/fix-verify-before-allocs
[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 }