summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/expected/cpp/33063-if_chain_braces.cpp
blob: 7a66eeec7b46240a4c89fcb29a0ecfc38a696867 (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

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