2021-01-25 20:07:17 +08:00
|
|
|
! RUN: %flang -E %s 2>&1 | FileCheck %s
|
2020-08-04 01:50:42 +08:00
|
|
|
! CHECK: res = 777
|
2019-10-05 06:21:31 +08:00
|
|
|
! KWM call name split across continuation, with leading &
|
|
|
|
integer, parameter :: KWM = 666
|
|
|
|
#define KWM 777
|
|
|
|
integer :: res
|
|
|
|
res = KW&
|
|
|
|
&M
|
|
|
|
if (res .eq. 777) then
|
2020-08-04 01:50:42 +08:00
|
|
|
print *, 'pp105.F90 yes'
|
2019-10-05 06:21:31 +08:00
|
|
|
else
|
2020-08-04 01:50:42 +08:00
|
|
|
print *, 'pp105.F90 no: ', res
|
2019-10-05 06:21:31 +08:00
|
|
|
end if
|
|
|
|
end
|