]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/SemaObjCXX/linkage-spec.mm
Vendor import of clang release_30 branch r142614:
[FreeBSD/FreeBSD.git] / test / SemaObjCXX / linkage-spec.mm
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 extern "C" {
3 @class Protocol;
4 }
5
6 // <rdar://problem/7827709>
7 extern "C" {
8 @class I;
9 }
10
11 @interface I
12 @end
13
14 // rdar://10015110
15 @protocol VKAnnotation;
16 extern "C" {
17
18 @protocol VKAnnotation
19   @property (nonatomic, assign) id coordinate;
20 @end
21 }