зеркало из https://github.com/microsoft/clang-1.git
16 строки
304 B
Objective-C
16 строки
304 B
Objective-C
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
// rdar:// 6812436
|
|
|
|
@interface A @end
|
|
|
|
@interface A () {
|
|
int _p0; // expected-error {{ivars may not be placed in class extension}}
|
|
}
|
|
@property int p0;
|
|
@end
|
|
|
|
@interface A(CAT) {
|
|
int _p1; // expected-error {{ivars may not be placed in categories}}
|
|
}
|
|
@end
|