summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/oc/50512-sp_oc_catch.m
blob: 6040b0712c1417eea70246f31f4ad97034421e93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

- (void) foo:(NSString*) inString
{
	@try {
	}
	@catch (NSException* const inException) {
	}
}

- (void) bar:(NSString*) inString
{
	@try {
	}
	@catch (NSException* const inException) {
	}
	@finally{
	}
}