[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Import / objc-try-catch / Inputs / F.m
blob5b8b67549b33ee96a3f52ada393315eea0cf6e2e
1 @interface Exception
2 @end
3 @interface OtherException
4 @end
6 void f() {
7   @try {
8     Exception *e;
9     @throw e;
10   }
11   @catch (Exception *varname) {
12   }
13   @finally {
14   }
16   @try {
17   }
18   @catch (Exception *varname1) {
19     @throw;
20   }
21   @catch (OtherException *varname2) {
22   }
24   @try {
25   }
26   @finally {
27   }