brintos

brintos / llvm-project-archived public Read only

0
0
Text · 251 B · c1208c1 Raw
15 lines · plain
1// RUN: %clang_cc1 -emit-llvm -o %t %s2// Test that meta-data for ivar lists with unnamed bitfield are generated.3//4@interface Foo {5@private6    int first;7    int :1;8    int third :1;9    int :1;10    int fifth :1;11}12@end13@implementation Foo 14@end15