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