summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/oc/51002-sp_oc_catch.m
blob: 391b8df8453122abac8cb5152cc53546847cce72 (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{
	}
}