You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
262 B
12 lines
262 B
4 months ago
|
// RUN: grep -Ev "// *[A-Z-]+:" %s \
|
||
|
// RUN: | clang-format -style=LLVM -lines=1:1 -lines=5:5 \
|
||
|
// RUN: | FileCheck -strict-whitespace %s
|
||
|
// CHECK: {{^int\ \*i;$}}
|
||
|
int*i;
|
||
|
|
||
|
// CHECK: {{^int\ \ \*\ \ i;$}}
|
||
|
int * i;
|
||
|
|
||
|
// CHECK: {{^int\ \*i;$}}
|
||
|
int * i;
|