aboutsummaryrefslogtreecommitdiffstats
path: root/test/C++Frontend/2003-11-04-ArrayConstructors.cpp
blob: 10097f6d12df525b6f4640281e87215a714309ff (plain)
1
2
3
4
5
6
7
8
9
10

struct Foo { 
  Foo(int); 
  ~Foo();
};
void foo() {
  struct {
    Foo name;
  } Int[] =  { 1 };
}