[clang-format] Improve brace wrapping and add an option to control indentation of...
[llvm-project.git] / flang / test / Preprocessing / pp029.F
blob1f8533ab08cd6c95fbb3efd1cad7d2c3616d6609
1 ! RUN: %flang -E %s 2>&1 | FileCheck %s
2 ! CHECK: if (77 7.eq. 777) then
3 * \ newline allowed in #define
4       integer, parameter :: KWM = 666
5 #define KWM 77\
6  7
7       if (KWM .eq. 777) then
8         print *, 'pp029.F yes'
9       else
10         print *, 'pp029.F no: ', KWM
11       end if
12       end