blob: 7935bdaacf045f89619cc44d736a2a59e3bced81 [file] [log] [blame]
David Chisnallc7ff82c2010-12-26 20:12:30 +00001// RUN: %clang -S -emit-llvm -fgnu-runtime -o %t %s
2typedef enum { A1, A2 } A;
3typedef struct { A a : 1; } B;
4@interface Obj { B *b; } @end
5@implementation Obj @end