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 split across continuation, implicit padding
|
|
|
|
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 *, 'pp005.F yes'
|
2019-10-05 06:21:31 +08:00
|
|
|
else
|
2020-08-04 01:50:42 +08:00
|
|
|
print *, 'pp005.F no: ', res
|
2019-10-05 06:21:31 +08:00
|
|
|
end if
|
|
|
|
end
|