repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
template
/
copy1.C
blob
3b45cc08386f8c557d6ae96f0505b441b4129d68
1
// { dg-do compile }
2
3
// Origin: hkluender@otg.com
4
5
// PR 5189
6
7
struct A
8
{
9
A(A&); // { dg-error "candidate" "" }
10
template <class T> A(T);
11
};
12
13
A a = 0; // { dg-error "no matching function|initializing" "" }
14