blob: 19c5cc4a08f364bcc5fb47a5085bc440fa13d74c [file] [log] [blame]
John McCall260611a2012-06-20 06:18:46 +00001// RUN: %clang -S -emit-llvm -fobjc-runtime=gnu -o %t %s
David Chisnallc7ff82c2010-12-26 20:12:30 +00002typedef enum { A1, A2 } A;
3typedef struct { A a : 1; } B;
4@interface Obj { B *b; } @end
5@implementation Obj @end