(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
ref-bind8.C
// PR c++/97296
// { dg-do compile }

void f(const int * const &);
void f(const int *);
int *x;
int main()
{
  f(x); // { dg-error "call of overloaded" }
}