diff --git a/test/C++Frontend/2003-11-04-ArrayConstructors.cpp b/test/C++Frontend/2003-11-04-ArrayConstructors.cpp new file mode 100644 index 00000000000..24908110579 --- /dev/null +++ b/test/C++Frontend/2003-11-04-ArrayConstructors.cpp @@ -0,0 +1,9 @@ + +struct Foo { + Foo(int); +}; +void foo() { + struct { + Foo name; + } Int[] = { 1 }; +}