summaryrefslogtreecommitdiffstats
path: root/test/CodeGenObjC/bitfield-gnu.m
blob: 7935bdaacf045f89619cc44d736a2a59e3bced81 (plain)
1
2
3
4
5
// RUN: %clang -S -emit-llvm -fgnu-runtime -o %t %s
typedef enum { A1, A2 } A;
typedef struct { A a : 1; } B;
@interface Obj { B *b; } @end
@implementation Obj @end