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

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