blob: eee78fd5e744556e1d178f4af03d2f9a8f419867 [file] [log] [blame]
// 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" }
}