forked from OSchip/llvm-project
20 lines
448 B
Fortran
20 lines
448 B
Fortran
! RUN: %f18 -E %s 2>&1 | FileCheck %s
|
|
! CHECK: res = ((666)+111)
|
|
! FLM rescan
|
|
integer function IFLM(x)
|
|
integer :: x
|
|
IFLM = x
|
|
end function IFLM
|
|
program main
|
|
integer, parameter :: KWM = 999
|
|
#define KWM 111
|
|
#define IFLM(x) ((x)+KWM)
|
|
integer :: res
|
|
res = IFLM(666)
|
|
if (res .eq. 777) then
|
|
print *, 'pp119.F90 yes'
|
|
else
|
|
print *, 'pp119.F90 no: ', res
|
|
end if
|
|
end
|