blob: 584571de9636bc82dc82aa6fd926a1e416fe6bbb [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Douglas Gregorce356072009-01-06 23:51:29 +00002extern "C" {
3@class Protocol;
4}
Douglas Gregor78713d82010-04-09 21:30:38 +00005
6// <rdar://problem/7827709>
7extern "C" {
8@class I;
9}
10
11@interface I
12@end
Fariborz Jahanianca4c40a2011-08-25 22:26:53 +000013
14// rdar://10015110
15@protocol VKAnnotation;
16extern "C" {
17
18@protocol VKAnnotation
19 @property (nonatomic, assign) id coordinate;
20@end
21}