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.
14 lines
376 B
14 lines
376 B
! RUN: %f18 -E %s 2>&1 | FileCheck %s
|
|
! CHECK: if(kwm.eq.777)then
|
|
* #define with # in column 6 is a continuation line in fixed-form
|
|
integer, parameter :: defineKWM666 = 555
|
|
integer, parameter :: KWM =
|
|
#define KWM 666
|
|
++222
|
|
if (KWM .eq. 777) then
|
|
print *, 'pp043.F yes'
|
|
else
|
|
print *, 'pp043.F no: ', KWM
|
|
end if
|
|
end
|