blob: a53623ff03692a86fc86184e620482c1ddd8d9bb [file] [log] [blame]
* FLM call split across continuation, implicit padding
integer function IFLM(x)
integer :: x
IFLM = x
end function IFLM
program main
#define IFLM(x) ((x)+111)
integer :: res
res = IFL
+M(666)
if (res .eq. 777) then
print *, 'pp009.F pass'
else
print *, 'pp009.F FAIL: ', res
end if
end