llvm-project/llvm/test/Regression/C++Frontend/2003-11-04-ArrayConstructor...

11 lines
101 B
C++

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