blob: 584571de9636bc82dc82aa6fd926a1e416fe6bbb [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify %s
extern "C" {
@class Protocol;
}
// <rdar://problem/7827709>
extern "C" {
@class I;
}
@interface I
@end
// rdar://10015110
@protocol VKAnnotation;
extern "C" {
@protocol VKAnnotation
@property (nonatomic, assign) id coordinate;
@end
}