Fortran: Fix PR 47485.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / ref-bind8.C
blobeee78fd5e744556e1d178f4af03d2f9a8f419867
1 // PR c++/97296
2 // { dg-do compile }
4 void f(const int * const &);
5 void f(const int *);
6 int *x;
7 int main()
9   f(x); // { dg-error "call of overloaded" }