repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
clang-rename
/
Typedef.cpp
blob
64d337fae22c7966046aa0f12b915d2fdefc6f9a
1
namespace
std
{
2
class
basic_string
{};
3
typedef
basic_string string
;
4
}
// namespace std
5
6
std
::
string
foo
();
// // CHECK: std::new_string foo();
7
8
// RUN: clang-rename -offset=93 -new-name=new_string %s -- | sed 's,//.*,,' | FileCheck %s