summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/d/40070-d_sp_paren.d
blob: cc38daaea37a47823051bd57f2e0fed031d04238 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
version(unittest) {
	import foo;
}

void main() {
	scope(exit) {
		foo();
	}

	scope(success) suckit();

	scope f = new Foo();
	if (foo)
	{
	}

	try {
		throw(e);
	}
	catch(Exception e) {
	}
}