llvm-6502/test/C++Frontend/2003-11-04-ArrayConstructors.cpp
2003-11-05 05:31:24 +00:00

11 lines
101 B
C++

struct Foo {
Foo(int);
~Foo();
};
void foo() {
struct {
Foo name;
} Int[] = { 1 };
}