4 void foo() /* Test 1 */ {} // CHECK: void bar() /* Test 1 */ {}
7 int main(int argc
, char **argv
) {
11 a
.foo(); /* Test 2 */ // CHECK: a.bar(); /* Test 2 */
12 b
.foo(); /* Test 3 */ // CHECK: b.bar(); /* Test 3 */
13 c
.foo(); /* Test 4 */ // CHECK: c.bar(); /* Test 4 */
18 // RUN: clang-rename -offset=48 -new-name=bar %s -- | sed 's,//.*,,' | FileCheck %s
20 // RUN: clang-rename -offset=191 -new-name=bar %s -- | sed 's,//.*,,' | FileCheck %s
22 // RUN: clang-rename -offset=255 -new-name=bar %s -- | sed 's,//.*,,' | FileCheck %s
24 // RUN: clang-rename -offset=319 -new-name=bar %s -- | sed 's,//.*,,' | FileCheck %s
26 // To find offsets after modifying the file, use:
27 // grep -Ubo 'foo.*' <file>