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

10 lines
91 B
C++
Raw Normal View History

2003-11-05 05:22:15 +00:00
struct Foo {
Foo(int);
};
void foo() {
struct {
Foo name;
} Int[] = { 1 };
}