summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/cpp/33066-if_chain_braces.cpp
blob: 0ef6478b92ee7e40d95ff903246133bd14891576 (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
38
39
40
41
42
43
44
45
46
47
48
49
50

int foo() {
	if ( a )
		return 1;
	else if ( b )
		return 2;

	if ( a ) {
		return 3;
	}
	else if ( b ) {
		return 4;
	}
	else {
		a = 5;
		return 5;
	}

	if ( a )
		return 6;
	else
		return 7;

	if ( a )
		return 8;

	if ( b ) {
		return 9;
	}

	if ( b ) {
		{ b = 5; }
		return 10;
	}

	if ( a ) {
		return 11;
	}
	else {
		return 12;
	}

	if ( a ) {
		return 13;
	} else if ( b ) {
		return 14;
	} else {
		return 15;
	}
}