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

test-840.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5c4a93aeb2e65691f0af84eff078fff7b054af12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
struct R
{
	public static bool operator < (R left, R right)
	{
		return true;
	}

	public static bool operator > (R left, R right)
	{
		return false;
	}
	
	public static implicit operator float(R r)
	{
		return 5;
	}
	
	public static implicit operator R(float f)
	{
		return new R ();
	}
}

class C
{
	public static int Main ()
	{
		var r = new R ();
		float f = 999f;
		
		bool b = f < r;
		if (!b)
			return 1;
		
		return 0;
	}
}