brintos

brintos / llvm-project-archived public Read only

0
0
Text · 166 B · ba81e93 Raw
17 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s2// expected-no-diagnostics3 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