Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
1d6ebdfb66b9d63d34f34ec6ac7ec57eff7cd24b
/
.
/
clang
/
test
/
clang-rename
/
TemplateCtor.cpp
blob: 9a59194ac3f4d33ce6d162e4ca18e5357c7ac9b1 [
file
] [
log
] [
blame
]
class
Foo
{
// CHECK: class Bar {
public
:
template
<
typename
T
>
Foo
();
// CHECK: Bar();
template
<
typename
T
>
Foo
(
Foo
&);
// CHECK: Bar(Bar &);
};
// RUN: clang-rename -offset=6 -new-name=Bar %s -- | sed 's,//.*,,' | FileCheck %s