2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
2012-10-19 20:44:48 +08:00
|
|
|
// expected-no-diagnostics
|
2009-01-07 07:51:29 +08:00
|
|
|
extern "C" {
|
|
|
|
@class Protocol;
|
|
|
|
}
|
2010-04-10 05:30:38 +08:00
|
|
|
|
|
|
|
// <rdar://problem/7827709>
|
|
|
|
extern "C" {
|
|
|
|
@class I;
|
|
|
|
}
|
|
|
|
|
|
|
|
@interface I
|
|
|
|
@end
|
2011-08-26 06:26:53 +08:00
|
|
|
|
|
|
|
// rdar://10015110
|
|
|
|
@protocol VKAnnotation;
|
|
|
|
extern "C" {
|
|
|
|
|
|
|
|
@protocol VKAnnotation
|
|
|
|
@property (nonatomic, assign) id coordinate;
|
|
|
|
@end
|
|
|
|
}
|