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