brintos

brintos / llvm-project-archived public Read only

0
0
Text · 255 B · 943e053 Raw
26 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s2// expected-no-diagnostics3 4// PR84305namespace N {6  class A { };7}8 9namespace M { }10 11using namespace M;12 13namespace N {14  namespace M {15  } 16}17 18namespace M {19  namespace N {20  }21}22 23namespace N {24  A *getA();25}26