You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
377 B
15 lines
377 B
! RUN: %f18 -E %s 2>&1 | FileCheck %s
|
|
! CHECK-NOT:z=111
|
|
* #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 *, 'yes'
|
|
else
|
|
print *, 'no', z
|
|
end if
|
|
end
|