summaryrefslogtreecommitdiffstats
path: root/test/change-namespace/simple-move.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/change-namespace/simple-move.cpp')
-rw-r--r--test/change-namespace/simple-move.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/change-namespace/simple-move.cpp b/test/change-namespace/simple-move.cpp
deleted file mode 100644
index ea3c3d33..00000000
--- a/test/change-namespace/simple-move.cpp
+++ /dev/null
@@ -1,10 +0,0 @@
-// 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
-}
-}