Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / clang-rename / ForceMulti.cpp
blob41983ce260c826f42637535dcb468c5ed6cec9ef
1 class B /* Test 1 */ { // CHECK: class B2 /* Test 1 */ {
2 };
4 class D : public B /* Test 1 */ { // CHECK: class D : public B2 /* Test 1 */ {
5 };
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