You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// RUN: %clang_cc1 -emit-llvm -o %t %s
|
|
// Test that meta-data for ivar lists with unnamed bitfield are generated.
|
|
//
|
|
@interface Foo {
|
|
@private
|
|
int first;
|
|
int :1;
|
|
int third :1;
|
|
int :1;
|
|
int fifth :1;
|
|
}
|
|
@end
|
|
@implementation Foo
|
|
@end
|