mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-05-19 04:16:37 +00:00

Reviewers: sammccall Subscribers: cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D68459 llvm-svn: 373748
5 lines
148 B
C++
5 lines
148 B
C++
class Foo; // CHECK: class Bar;
|
|
Foo *f(); // CHECK: Bar *f();
|
|
|
|
// RUN: clang-rename -offset=6 -new-name=Bar %s -- | sed 's,//.*,,' | FileCheck %s
|