repo.or.cz
/
clang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git]
/
test
/
Rewriter
/
rewrite-eh.m
blob
5bc80b55093ffb9edebf380de3df3385c1e0e6c3
1
// RUN: %clang_cc1 -rewrite-objc -o - %s
2
// rdar://7522880
3
4
@interface NSException
5
@end
6
7
@interface Foo
8
@end
9
10
@implementation Foo
11
- (void)bar {
12
@try {
13
} @catch (NSException *e) {
14
}
15
@catch (Foo *f) {
16
}
17
@catch (...) {
18
}
19
}
20
@end