mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-29 16:16:06 +00:00
11 lines
208 B
C++
11 lines
208 B
C++
![]() |
// RUN: grep -Ev "// *[A-Z-]+:" %s | clang-format -lines=2:2 \
|
||
|
// RUN: | FileCheck -strict-whitespace %s
|
||
|
|
||
|
void f() {
|
||
|
// CHECK: void f() {
|
||
|
int i;
|
||
|
// CHECK: {{^ int\ i;}}
|
||
|
int j;
|
||
|
// CHECK: {{^ int\ j;}}
|
||
|
}
|