1 // RUN: rm -f %t.cp.cpp
2 // RUN: cp %s %t.cp.cpp
3 // RUN: clang-refactor local-rename -selection=%t.cp.cpp:9:7 -new-name=test %t.cp.cpp --
4 // RUN: grep -v CHECK %t.cp.cpp | FileCheck %t.cp.cpp
5 // RUN: cp %s %t.cp.cpp
6 // RUN: clang-refactor local-rename -selection=%t.cp.cpp:9:7-9:15 -new-name=test %t.cp.cpp --
7 // RUN: grep -v CHECK %t.cp.cpp | FileCheck %t.cp.cpp
8 
9 class RenameMe {
10 // CHECK: class test {
11 };
12