xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenObjC/bitfield-gnu.m (revision 0b98e8aad89f2bd4ba80b523d73cf29e9dd82ce1)
1// RUN: %clang -S -emit-llvm -fobjc-runtime=gcc -o %t %s
2typedef enum { A1, A2 } A;
3typedef struct { A a : 1; } B;
4@interface Obj { B *b; } @end
5@implementation Obj @end
6