1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
6 lines
165 B
Objective-C
6 lines
165 B
Objective-C
// 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
|