Remove debugging code from generated code
[mono-project.git] / mcs / errors / cs0034.cs
blobfe448753386dfec1d87a6a43c00faea8e4a78895
1 // cs0034.cs: Operator `>=' is ambiguous on operands of type `ulong' and `sbyte'
2 // Line: 7
3 class X {
5 bool ret (ulong u, sbyte s)
7 return (u >= s);
10 bool ret (ulong u, short s)
12 return (u >= s);