Add and use DominatorTreeBase::findNearestCommonDominator().
[llvm-complete.git] / test / C++Frontend / 2003-11-04-ArrayConstructors.cpp
blob4df4f9b6727b5923e9ea7496a64f8b4b136f2fc7
1 // RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
4 struct Foo {
5 Foo(int);
6 ~Foo();
7 };
8 void foo() {
9 struct {
10 Foo name;
11 } Int[] = { 1 };