view clang/test/Format/adjust-indent.cpp @ 150:1d019706d866

LLVM10
author anatofuz
date Thu, 13 Feb 2020 15:10:13 +0900
parents
children
line wrap: on
line source

// RUN: grep -Ev "// *[A-Z-]+:" %s | clang-format -style=LLVM -lines=2:2 \
// RUN:   | FileCheck -strict-whitespace %s

void  f() {
// CHECK: void f() {
int i;
// CHECK: {{^  int\ i;}}
 int j;
// CHECK: {{^  int\ j;}}
}