summaryrefslogtreecommitdiff
path: root/test/FrontendC++/2005-02-19-BitfieldStructCrash.cpp
blob: 8f571e074b8e2a2ea26c77a14106d25a85e2c62f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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); }