This patch renames the modules in f18 to use a capital letter in the module name Signed-off-by: Caroline Concatto <caroline.concatto@arm.com> Original-commit: flang-compiler/f18@d2eb7a1c44 Reviewed-on: https://github.com/flang-compiler/f18/pull/980
13 lines
324 B
Fortran
13 lines
324 B
Fortran
* #define directive amid continuations
|
|
integer, parameter :: KWM = 222, KWM111 = 333, KWM222 = 555
|
|
integer, parameter :: KWMKWM = 333
|
|
integer, parameter :: z = KWM
|
|
#define KWM 111
|
|
+KWM+444
|
|
if (z .EQ. 777) then
|
|
print *, 'pass'
|
|
else
|
|
print *, 'FAIL', z
|
|
end if
|
|
end
|