llvm-for-llvmta/tools/clang/test/clang-rename/ForwardClassDecl.cpp

5 lines
148 B
C++
Raw Normal View History

2022-04-25 13:02:35 +02:00
class Foo; // CHECK: class Bar;
Foo *f(); // CHECK: Bar *f();
// RUN: clang-rename -offset=6 -new-name=Bar %s -- | sed 's,//.*,,' | FileCheck %s