summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/oc/sp_oc_catch.m
blob: fe04844d01b64ed9320ea2b45f6b7b254a737409 (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 {
   }
}