According to my auto-simplifier the most common missed simplifications in
[llvm/stm8.git] / test / FrontendC++ / 2003-11-04-ArrayConstructors.cpp
blob4ab33988ebb894bf8f28057b0cd992f2b9301f44
1 // RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
4 struct Foo {
5 Foo(int);
6 ~Foo();
7 };
8 void foo() {
9 struct {
10 Foo name;
11 } Int[] = { 1 };