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