PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / overload / using3.C
blob38344e48a9d25ad093f09ff54f842e769ea683a7
1 // { dg-do compile }
3 namespace a
5   void f(int);
8 namespace b
10   void f(int); // { dg-message "previous" }
11   void g()
12   {
13     f (3);
14   }
15   using a::f; // { dg-error "conflicts" }