FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.dg / template / copy1.C
blob3b45cc08386f8c557d6ae96f0505b441b4129d68
1 // { dg-do compile }
3 // Origin: hkluender@otg.com
5 // PR 5189
7 struct A
9   A(A&); // { dg-error "candidate" "" }
10   template <class T> A(T); 
13 A a = 0; // { dg-error "no matching function|initializing" "" }