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
/
parse
/
error19.C
blob
24a66affdaea8c176c95118ae2a6b80cf037b8ab
1
// PR C++/17867
2
3
struct A
4
{ // { dg-error "candidate" }
5
A(int);
6
};
7
8
const A& foo();
9
10
void bar()
11
{
12
foo()=A(0); // { dg-error "A" }
13
}