1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 22:42:52 +01:00
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 };
}