2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0019-28.cs
blob85cf7b91b9f754eb40b8eb47c20a06c4fa260dbb
1 // CS0019: Operator `>=' cannot be applied to operands of type `ulong' and `sbyte'
2 // Line: 7
4 class X {
5 bool ret (ulong u, sbyte s)
7 return (u >= s);