new testcase to verify that we have field sensitive alias analysis info. This
[oota-llvm.git] / test / C++Frontend / 2003-11-04-ArrayConstructors.cpp
1 // RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
2
3
4 struct Foo { 
5   Foo(int); 
6   ~Foo();
7 };
8 void foo() {
9   struct {
10     Foo name;
11   } Int[] =  { 1 };
12 }