aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/m3.C
blob: 492b2611a31094da9fbe079e45c0f7b5ef43629a (plain)
1
2
3
4
5
6
7
8
9
// Build don't link: 

struct A { A() { a = 2; } int a; };

struct B {
  struct A { A() { a = 2; } int a; };
  A aa;
};
char xx[]="../tests/m3.cc:4: redefinition of `struct A'";