2009-04-22 03:55:16 +08:00
|
|
|
// RUN: clang-cc -triple x86_64-apple-darwin9 -verify -fsyntax-only %s
|
2009-04-21 23:48:54 +08:00
|
|
|
|
|
|
|
@class I0;
|
2009-04-22 03:55:16 +08:00
|
|
|
|
|
|
|
// rdar://6811884
|
|
|
|
int g0 = sizeof(I0); // expected-error{{invalid application of 'sizeof' to a forward declared interface 'I0'}}
|
2009-04-21 23:48:54 +08:00
|
|
|
|
|
|
|
@interface I0 {
|
|
|
|
char x[4];
|
|
|
|
}
|
|
|
|
|
|
|
|
@property int p0;
|
|
|
|
@end
|
|
|
|
|
|
|
|
// size == 4
|
2009-04-22 03:55:16 +08:00
|
|
|
int g1[ sizeof(I0) // expected-error {{invalid application of 'sizeof' to interface 'I0' in non-fragile ABI}}
|
|
|
|
== 4 ? 1 : -1];
|
2009-04-21 23:48:54 +08:00
|
|
|
|
|
|
|
@implementation I0
|
|
|
|
@synthesize p0 = _p0;
|
|
|
|
@end
|
|
|
|
|
|
|
|
// size == 4 (we do not include extended properties in the
|
|
|
|
// sizeof).
|
2009-04-22 03:55:16 +08:00
|
|
|
int g2[ sizeof(I0) // expected-error {{invalid application of 'sizeof' to interface 'I0' in non-fragile ABI}}
|
|
|
|
== 4 ? 1 : -1];
|
2009-04-21 23:48:54 +08:00
|
|
|
|
|
|
|
@interface I1
|
|
|
|
@property int p0;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation I1
|
|
|
|
@synthesize p0 = _p0;
|
|
|
|
@end
|
|
|
|
|
|
|
|
// FIXME: This is currently broken due to the way the record layout we
|
|
|
|
// create is tied to whether we have seen synthesized properties. Ugh.
|
|
|
|
// int g3[ sizeof(I1) == 0 ? 1 : -1];
|