xref: /llvm-project/clang/test/Preprocessor/print_line_include.c (revision ae6b40000238e5faaaa319ffcfc713a15e459be8)
1 // RUN: %clang_cc1 -E -P %s | FileCheck %s
2 // CHECK: int x;
3 // CHECK-NEXT: int x;
4 
5 // RUN: %clang_cc1 -E -P -fminimize-whitespace %s | FileCheck %s --check-prefix=MINWS --strict-whitespace
6 // MINWS: {{^}}int x;int x;{{$}}
7 
8 #include "print_line_include.h"
9 #include "print_line_include.h"
10