forked from OSchip/llvm-project
11 lines
212 B
Fortran
11 lines
212 B
Fortran
|
! #undef
|
||
|
integer, parameter :: KWM = 777
|
||
|
#define KWM 666
|
||
|
#undef KWM
|
||
|
if (KWM .eq. 777) then
|
||
|
print *, 'pp102.F90 pass'
|
||
|
else
|
||
|
print *, 'pp102.F90 FAIL: ', KWM
|
||
|
end if
|
||
|
end
|