llvm-project/llvm/test/Regression/C++Frontend/2003-11-04-ArrayConstructors.cpp
Chris Lattner b3a9b6626f NEw testcase
llvm-svn: 9720
2003-11-05 05:22:15 +00:00

10 lines
91 B
C++

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