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

test-904.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1f9516d3266f09c6f771f01de54aa2f0f24d6236 (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
using System;

class Test
{
	public static bool Foo (out int v)
	{
		v = 0;
		return false;
	}

	static void Main()
	{
		bool b = false;
	
		int a1;
		var r1 = (false || Foo (out a1)) ? a1 : 1;

		int a2;
		var r2 = (true && Foo (out a2)) ? 2 : a2;

		int a3;
		var r3 = (b || Foo (out a3)) && Foo (out a3);
		int b3 = a3;

		int a4;
		var r4 = ((b || Foo (out a4)) && Foo (out a4));
		int b4 = a4;

		int a5;
		if ((b || Foo (out a5)) && (b || Foo (out a5)))
			Console.WriteLine ();
		else
			Console.WriteLine (a5);
	}
}