llvm-project/flang/test/Preprocessing/pp102.F90

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
212 B
Fortran
Raw Normal View History

! #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