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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
SemaObjCXX
/
linkage-spec.mm
blob
a6bc30213081675e1ef60ac29b283679e89ef141
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
// expected-no-diagnostics
3
extern "C" {
4
@class Protocol;
5
}
6
7
extern "C" {
8
@class I;
9
}
10
11
@interface I
12
@end
13
14
@protocol VKAnnotation;
15
extern "C" {
16
17
@protocol VKAnnotation
18
@property (nonatomic, assign) id coordinate;
19
@end
20
}