You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
! RUN: %f18 -E %s 2>&1 | FileCheck %s
|
|
! CHECK: if(.true.)then
|
|
! CHECK: print*,'pp036.F no: ',.true.
|
|
* #define FALSE TRUE ... .FALSE. -> .TRUE.
|
|
#define FALSE TRUE
|
|
if (.FALSE.) then
|
|
print *, 'pp036.F yes'
|
|
else
|
|
print *, 'pp036.F no: ', .FALSE.
|
|
end if
|
|
end
|