llvm-mirror/test/Regression/C++Frontend/2003-11-04-ArrayConstructors.cpp
Misha Brukman 53e199440e Remove trailing whitespace
llvm-svn: 21427
2005-04-21 23:48:37 +00:00

13 lines
154 B
C++

// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
struct Foo {
Foo(int);
~Foo();
};
void foo() {
struct {
Foo name;
} Int[] = { 1 };
}