Clang Project

clang_source_code/test/clang-rename/ForceMulti.cpp
1class B /* Test 1 */ { // CHECK: class B2 /* Test 1 */ {
2};
3
4class D : public B /* Test 1 */ { // CHECK: class D : public B2 /* Test 1 */ {
5};
6
7// Test 1.
8// RUN: clang-rename -force -qualified-name B -new-name B2 -qualified-name E -new-name E2 %s -- | sed 's,//.*,,' | FileCheck %s
9