mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
eb3cd5e822
llvm-svn: 51695
15 lines
264 B
C++
15 lines
264 B
C++
// 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); }
|