1! RUN: %f18 -E %s 2>&1 | FileCheck %s 2! CHECK: res = kwm 3! KWM call name split across continuation, no leading &, with & ! comment 4 integer, parameter :: KWM = 666 5#define KWM 777 6 integer :: res 7 res = KW& ! comment 8M 9 if (res .eq. 777) then 10 print *, 'pp107.F90 yes' 11 else 12 print *, 'pp107.F90 no: ', res 13 end if 14 end 15