blob: 9923271dafb2ac7728fab4faaf9951f71ffa2dc0 [file] [log] [blame]
// RUN: %llvmgxx -S %s -o -
struct QChar {unsigned short X; QChar(unsigned short); } ;
struct Command {
Command(QChar c) : c(c) {}
unsigned int type : 4;
QChar c;
};
Command X(QChar('c'));