repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PR c++/67273
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
parse
/
error45.C
blob
7df8b13f469e93ca63480b87e10cc4b819d6c236
1
// PR c++/51429
2
// { dg-do compile }
3
4
struct A
5
{
6
void foo (double);
7
void foo (int);
8
A () { foo = 0; } // { dg-error "invalid use of member function" }
9
};