repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
ref-bind8.C
blob
eee78fd5e744556e1d178f4af03d2f9a8f419867
1
// PR c++/97296
2
// { dg-do compile }
3
4
void f(const int * const &);
5
void f(const int *);
6
int *x;
7
int main()
8
{
9
f(x); // { dg-error "call of overloaded" }
10
}