xref: /llvm-project/clang/test/Preprocessor/first-line-indent.c (revision ae6b40000238e5faaaa319ffcfc713a15e459be8)
1        foo
2 // RUN: %clang_cc1 -E %s | FileCheck -strict-whitespace %s
3 // RUN: %clang_cc1 -E -fminimize-whitespace %s | FileCheck -strict-whitespace %s --check-prefix=MINCOL
4 // RUN: %clang_cc1 -E -fminimize-whitespace -P %s | FileCheck -strict-whitespace %s --check-prefix=MINWS
5        bar
6 
7 // CHECK: {{^       }}foo
8 // CHECK: {{^       }}bar
9 
10 // MINCOL: {{^}}foo
11 // MINCOL: {{^}}bar
12 
13 // MINWS: {{^}}foo bar
14 
15