Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / clang-rename / Typedef.cpp
blob64d337fae22c7966046aa0f12b915d2fdefc6f9a
1 namespace std {
2 class basic_string {};
3 typedef basic_string string;
4 } // namespace std
6 std::string foo(); // // CHECK: std::new_string foo();
8 // RUN: clang-rename -offset=93 -new-name=new_string %s -- | sed 's,//.*,,' | FileCheck %s