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

test-587.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 65e34026c67e5872b660a7fc3314e75b8e279f7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class Program
{
	public static int Main ()
	{
		int ctc_f = 0;

		if ((++ctc_f == 0 && false)) {
			return 1;
		} else if (false && +ctc_f == 0) {
			return 2;
		} else {
			if (ctc_f != 1) {
				return 3;
			}
			
			return 0;
		}
	}
}