blob: 8f571e074b8e2a2ea26c77a14106d25a85e2c62f [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'));
void Foo(QChar );
void bar() { Foo(X.c); }