repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git]
/
clang
/
test
/
Import
/
objc-try-catch
/
Inputs
/
F.m
blob
5b8b67549b33ee96a3f52ada393315eea0cf6e2e
1
@interface Exception
2
@end
3
@interface OtherException
4
@end
5
6
void f() {
7
@try {
8
Exception *e;
9
@throw e;
10
}
11
@catch (Exception *varname) {
12
}
13
@finally {
14
}
15
16
@try {
17
}
18
@catch (Exception *varname1) {
19
@throw;
20
}
21
@catch (OtherException *varname2) {
22
}
23
24
@try {
25
}
26
@finally {
27
}
28
}