blob: 25b57a9a5c686c90199bb8e0c5b77e83430bb1a8 [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Andy Gibbsc6e68da2012-10-19 12:44:48 +00002// expected-no-diagnostics
Douglas Gregor6ad0ef52009-01-06 23:51:29 +00003extern "C" {
4@class Protocol;
5}
Douglas Gregor53080572010-04-09 21:30:38 +00006
7// <rdar://problem/7827709>
8extern "C" {
9@class I;
10}
11
12@interface I
13@end
Fariborz Jahanian37137602011-08-25 22:26:53 +000014
15// rdar://10015110
16@protocol VKAnnotation;
17extern "C" {
18
19@protocol VKAnnotation
20 @property (nonatomic, assign) id coordinate;
21@end
22}