blob: 0244fc195ca18951eca71be1d75f767eeacea364 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// RUN: grep -Ev "// *[A-Z-]+:" %s > %t.cpp
// RUN: clang-format -offset=2 -length=0 -offset=28 -length=0 -i %t.cpp
// RUN: FileCheck -strict-whitespace -input-file=%t.cpp %s
// CHECK: {{^int\ \*i;$}}
int*i;
// CHECK: {{^\ \ int\ \ \*\ \ i;$}}
int * i;
// CHECK: {{^\ \ int\ \*i;$}}
int * i;
|