Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0034.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2d5917abee5fb304fceb59459b610294e236f879 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// cs0034: operator >= is ambiguous on types ulong and sbyte
// Line: 7
class X {

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

	bool ret (ulong u, short s)
	{
		return (u >= s);
	}

}