aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/parse/namespace9.C
blob: 7ff0267bff3d68cfa7092d938d73b7d77a11fd8d (plain)
1
2
3
4
5
6
7
8
namespace A {
  void f();
}
int g()
{
  struct f { };
  using A::f;
}