1* FLM call split between name and ( and in argument
2      integer function IFLM(x)
3        integer :: x
4        IFLM = x
5      end function IFLM
6      program main
7#define IFLM(x) ((x)+111)
8      integer :: res
9      res = IFLM
10     +(66
11     +6)
12      if (res .eq. 777) then
13        print *, 'pp016.F pass'
14      else
15        print *, 'pp016.F FAIL: ', res
16      end if
17      end
18