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