Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / strong-using-3.C
blob7679c6f1dc7be99b069f70deb23f1b1f2a87614c
1 // PR c++/13659
3 // { dg-options "" }
4 // { dg-do compile }
6 namespace bar {
7   inline namespace foo {
8     template <class T> void f(T, T);
9   }
10   template <class T> void f(T);
13 int main() {
14   // Make sure both declarations are brought in.
15   using bar::f;
16   f(1);
17   f(1, 1);