1 // { dg-do compile }
2 
3 namespace a
4 {
5   void f(int);
6 }
7 
8 namespace b
9 {
10   void f(int); // { dg-message "previous" }
g()11   void g()
12   {
13     f (3);
14   }
15   using a::f; // { dg-error "conflicts" }
16 }
17