llvm-6502/test/FrontendC++/2005-02-19-BitfieldStructCrash.cpp

15 lines
264 B
C++
Raw Normal View History

// 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); }