2020-08-04 01:50:42 +08:00
|
|
|
! RUN: %f18 -E %s 2>&1 | FileCheck %s
|
|
|
|
! CHECK: ch = 'KWM'
|
|
|
|
! CHECK: if(ch .eq. 'KWM') then
|
2019-10-05 06:21:31 +08:00
|
|
|
! KWM NOT expanded in 'literal'
|
|
|
|
#define KWM 666
|
|
|
|
character(len=3) :: ch
|
|
|
|
ch = 'KWM'
|
|
|
|
if (ch .eq. 'KWM') then
|
2020-08-04 01:50:42 +08:00
|
|
|
print *, 'pp121.F90 yes'
|
2019-10-05 06:21:31 +08:00
|
|
|
else
|
2020-08-04 01:50:42 +08:00
|
|
|
print *, 'pp121.F90 no: ', ch
|
2019-10-05 06:21:31 +08:00
|
|
|
end if
|
|
|
|
end
|