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