xref: /llvm-project/clang/test/Preprocessor/indent_macro.c (revision 904a3e51839d725cfe8527fedfad85398e0b02aa)
1 // RUN: %clang_cc1 -E %s | FileCheck %s --match-full-lines --strict-whitespace
2 // CHECK:   zzap
3 
4 // zzap is on a new line, should be indented.
5 #define BLAH  zzap
6    BLAH
7 
8