diff options
Diffstat (limited to 'clang/test/Import/objc-try-catch/Inputs/F.m')
| -rw-r--r-- | clang/test/Import/objc-try-catch/Inputs/F.m | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/clang/test/Import/objc-try-catch/Inputs/F.m b/clang/test/Import/objc-try-catch/Inputs/F.m deleted file mode 100644 index 5b8b67549b3..00000000000 --- a/clang/test/Import/objc-try-catch/Inputs/F.m +++ /dev/null @@ -1,28 +0,0 @@ -@interface Exception -@end -@interface OtherException -@end - -void f() { - @try { - Exception *e; - @throw e; - } - @catch (Exception *varname) { - } - @finally { - } - - @try { - } - @catch (Exception *varname1) { - @throw; - } - @catch (OtherException *varname2) { - } - - @try { - } - @finally { - } -} |

