summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0019-28.cs
blob: 85cf7b91b9f754eb40b8eb47c20a06c4fa260dbb (plain)
1
2
3
4
5
6
7
8
9
// CS0019: Operator `>=' cannot be applied to operands of type `ulong' and `sbyte'
// Line: 7

class X {
	bool ret (ulong u, sbyte s)
	{
		return (u >= s);
	}
}