summaryrefslogtreecommitdiffstats
path: root/test/Rewriter/rewrite-try-catch.m
blob: 8c6d08f2e01d60378a2bd642e5bfc7d4d487d198 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// RUN: clang-cc -rewrite-objc %s -o=-

@interface Foo @end
@interface GARF @end

void foo() {
  @try  { TRY(); } 
  @catch (...) { SPLATCH(); @throw; }
}

int main()
{

  @try  {
     MYTRY();
  }

  @catch (Foo* localException) {
     MYCATCH();
     @throw;
  }
  
  // no catch clause
  @try { } 
  @finally { }
}

OpenPOWER on IntegriCloud