Reset branch to trunk.
[official-gcc.git] / trunk / gcc / testsuite / g++.dg / lookup / strong-using-3.C
blob17c50329df0ace5cd66b29e1620d3216cd7b6ce3
1 // PR c++/13659
3 // { dg-do compile }
5 namespace bar {
6   inline namespace foo {
7     template <class T> void f(T, T);
8   }
9   template <class T> void f(T);
12 int main() {
13   // Make sure both declarations are brought in.
14   using bar::f;
15   f(1);
16   f(1, 1);