xref: /aosp_15_r20/external/clang/test/Format/multiple-inputs-inplace.cpp (revision 67e74705e28f6214e480b399dd47ea732279e315)
1*67e74705SXin Li // RUN: cp %s %t-1.cpp
2*67e74705SXin Li // RUN: cp %s %t-2.cpp
3*67e74705SXin Li // RUN: clang-format -style=LLVM -i %t-1.cpp %t-2.cpp
4*67e74705SXin Li // RUN: FileCheck -strict-whitespace -input-file=%t-1.cpp %s
5*67e74705SXin Li // RUN: FileCheck -strict-whitespace -input-file=%t-2.cpp %s
6*67e74705SXin Li 
7*67e74705SXin Li // CHECK: {{^int\ \*i;}}
8*67e74705SXin Li  int   *  i  ;
9