repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
PCH
/
objc_stmts.h
blob
5f705dfcdbb729cc88d155d4978749abe63fa36c
1
/* For use with the methods.m test */
2
3
@interface A
4
@end
5
6
@interface B
7
@end
8
9
@interface TestPCH
10
- (
void
)
instMethod
;
11
@end
12
13
@implementation TestPCH
14
- (
void
)
instMethod
{
15
@
try
{
16
}
@
catch
(
A
*
a
) {
17
}
@
catch
(
B
*
b
) {
18
}
@
catch
(...) {
19
}
@finally
{
20
}
21
}
22
@end