mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 11:16:06 +00:00
10 lines
124 B
C++
10 lines
124 B
C++
// RUN: %clang_cc1 -emit-llvm-only %s
|
|
namespace A { }
|
|
namespace B = A;
|
|
|
|
namespace b {}
|
|
|
|
void foo() {
|
|
namespace a = b;
|
|
}
|