summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/33063-if_chain_braces.cpp
blob: 000387002aa122b2432a9fa9edf3da9671b30091 (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
51
52
53
54

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;
	}
}