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