xref: /llvm-project/flang/test/Preprocessing/pp036.F (revision 3338ef93b02837edf69abc203e15a42fa55aa1b3)
1! RUN: %flang -E %s 2>&1 | FileCheck %s
2! CHECK: if (.TRUE .) then
3! CHECK: print *, 'pp036.F no: ', .TRUE .
4* #define FALSE TRUE ...  .FALSE. -> .TRUE.
5#define FALSE TRUE
6      if (.FALSE.) then
7        print *, 'pp036.F yes'
8      else
9        print *, 'pp036.F no: ', .FALSE.
10      end if
11      end
12