Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / clang-rename / TemplateCtor.cpp
blob9a59194ac3f4d33ce6d162e4ca18e5357c7ac9b1
1 class Foo { // CHECK: class Bar {
2 public:
3 template <typename T>
4 Foo(); // CHECK: Bar();
6 template <typename T>
7 Foo(Foo &); // CHECK: Bar(Bar &);
8 };
10 // RUN: clang-rename -offset=6 -new-name=Bar %s -- | sed 's,//.*,,' | FileCheck %s