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

struct S {
  S(int);
  S(int); // ERROR - already declared

  ~S();
  ~S(); // ERROR - already declared
};