aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/p4677.C
blob: 463033caec3bb0fed87d0d5d47e44730fe5a4e1b (plain)
1
2
3
4
5
6
7
8
9
// Build don't link:
// prms-id: 4677

struct A {
  A(double d) { }
};

struct B { B(A) { } } bad = 1;		// ERROR - 
B good (1);