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