(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0034.cs
blob2d5917abee5fb304fceb59459b610294e236f879
1 // cs0034: operator >= is ambiguous on types 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);