1 class Foo { // CHECK: class Bar {
2 public:
3 template <typename T>
4 Foo(); // CHECK: Bar();
5
6 template <typename T>
7 Foo(Foo &); // CHECK: Bar(Bar &);
8 };
9
10 // RUN: clang-rename -offset=6 -new-name=Bar %s -- | sed 's,//.*,,' | FileCheck %s
11