[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / CodeGenCXX / namespace-aliases.cpp
blob8624eb75bf29a7f8455b944d5a94cb32715b068e
1 // RUN: %clang_cc1 -emit-llvm-only %s
2 namespace A { }
3 namespace B = A;
5 namespace b {}
7 void foo() {
8 namespace a = b;