xref: /minix3/external/bsd/llvm/dist/clang/test/SemaObjCXX/linkage-spec.mm (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1// RUN: %clang_cc1 -fsyntax-only -verify %s
2// expected-no-diagnostics
3extern "C" {
4@class Protocol;
5}
6
7// <rdar://problem/7827709>
8extern "C" {
9@class I;
10}
11
12@interface I
13@end
14
15// rdar://10015110
16@protocol VKAnnotation;
17extern "C" {
18
19@protocol VKAnnotation
20  @property (nonatomic, assign) id coordinate;
21@end
22}
23