summaryrefslogtreecommitdiff
path: root/test/clang-rename/ForwardClassDecl.cpp
blob: ef731a16d6e06b3230c234a83edd69dee7f4bc7a (plain)
1
2
3
4
class Foo; // CHECK: class Bar;
Foo *f();  // CHECK: Bar *f();

// RUN: clang-rename -offset=6 -new-name=Bar %s --  | sed 's,//.*,,' | FileCheck %s