1// RUN: %clang_cc1 -emit-llvm-only %s
2namespace A { }
3namespace B = A;
4
5namespace b {}
6
7void foo() {
8    namespace a = b;
9}
10