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