1// RUN: %clang_cc1 -fsyntax-only -verify %s
2// expected-no-diagnostics
3
4namespace A {
5  void g();
6}
7
8namespace X {
9  using A::g;
10}
11
12void h()
13{
14  A::g();
15  X::g();
16}
17