blob: b66d5f816ea875c61c8236d7efafac353c29450a (
plain)
1
2
3
4
5
6
7
8
|
// RUN: grep -Ev "// *[A-Z-]+:" %s > %t2.cpp
// RUN: clang-format -style=LLVM %t2.cpp > %t.cpp
// RUN: FileCheck -strict-whitespace -cursor=0 -input-file=%t.cpp %s
// CHECK: {{"IncompleteFormat": true}}
// CHECK: {{^int\ \i;$}}
int i;
// CHECK: {{^f \( g \(;$}}
f ( g (;
|