1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-01-06 04:31:08 +00:00
llvm-6502/test/FrontendC++/2010-06-22-BitfieldInit.cpp
2010-06-23 00:31:14 +00:00

21 lines
197 B
C++

// RUN: %llvmgxx -g -c %s
struct TEST2
{
int subid:32;
int :0;
};
typedef struct _TEST3
{
TEST2 foo;
TEST2 foo2;
} TEST3;
TEST3 test =
{
{0},
{0}
};
int main() { return 0; }