blob: 5565dc00b62d0b4f6ccd920e5610b3d94e001194 [file] [log] [blame]
Daniel Jaspera1036e52015-10-28 01:08:22 +00001// RUN: grep -Ev "// *[A-Z-]+:" %s | clang-format -lines=2:2 \
2// RUN: | FileCheck -strict-whitespace %s
3
4void f() {
5// CHECK: void f() {
6int i;
7// CHECK: {{^ int\ i;}}
8 int j;
9// CHECK: {{^ int\ j;}}
10}