1* use KWM expansion as continuation indicators
2#define KWM 0
3#define KWM2 1
4      integer :: j
5      j = 666
6     KWM j = j + 1
7     KWM2 11
8      if (j .eq. 777) then
9        print *, 'pp041.F pass'
10      else
11        print *, 'pp041.F FAIL', j
12      end if
13      end
14