xref: /aosp_15_r20/external/clang/test/CodeGenObjC/unname-bf-metadata.m (revision 67e74705e28f6214e480b399dd47ea732279e315)
1// RUN: %clang_cc1 -emit-llvm -o %t %s
2// 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
15