brintos

brintos / llvm-project-archived public Read only

0
0
Text · 124 B · 8624eb7 Raw
10 lines · cpp
1// RUN: %clang_cc1 -emit-llvm-only %s2namespace A { }3namespace B = A;4 5namespace b {}6 7void foo() {8    namespace a = b;9}10