
Makes the name of this directory consistent with the names of the other directories in clang-tools-extra. Differential Revision: https://reviews.llvm.org/D59382 llvm-svn: 356254
11 lines
299 B
C++
11 lines
299 B
C++
// RUN: clang-change-namespace -old_namespace "na::nb" -new_namespace "x::y" --file_pattern ".*" %s -- | sed 's,// CHECK.*,,' | FileCheck %s
|
|
// CHECK: namespace x {
|
|
// CHECK-NEXT: namespace y {
|
|
namespace na {
|
|
namespace nb {
|
|
class A {};
|
|
// CHECK: } // namespace y
|
|
// CHECK-NEXT: } // namespace x
|
|
}
|
|
}
|