blob: a7636e4ebc8b658c37d7f58a39db46d323ce377a [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -fnext-runtime -emit-llvm -o %t %s
Fariborz Jahanianf54b1942009-01-17 19:36:33 +00002// Test that meta-data for ivar lists with unnamed bitfield are generated.
3//
4@interface Foo {
5@private
6 int first;
7 int :1;
8 int third :1;
9 int :1;
10 int fifth :1;
11}
12@end
13@implementation Foo
14@end