Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / clang-rename / ForwardClassDecl.cpp
blobef731a16d6e06b3230c234a83edd69dee7f4bc7a
1 class Foo; // CHECK: class Bar;
2 Foo *f(); // CHECK: Bar *f();
4 // RUN: clang-rename -offset=6 -new-name=Bar %s -- | sed 's,//.*,,' | FileCheck %s