[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / pr83287-2.C
blob6ea65400a4205b4c473cb0b95c2408479ff9dc7d
1 // PR c++/83287 failed to keep lookup until instantiation time
3 void foo ();
5 namespace {
6   void foo ();
9 template <class T>
10 void
11 bar ()
13   new T (foo); // { dg-error "cannot resolve" }
16 void
17 baz ()
19   bar <double> ();