The Meson Build System
http://mesonbuild.com/
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.
23 lines
459 B
23 lines
459 B
6 years ago
|
implicit none
|
||
|
|
||
|
integer :: x, y
|
||
|
|
||
|
x = 1
|
||
|
y = 0
|
||
|
|
||
|
! include "timestwo.f90"
|
||
|
|
||
|
include "timestwo.f90" ! inline comment check
|
||
|
if (x/=2) error stop 'failed on first include'
|
||
|
|
||
|
! leading space check
|
||
|
include 'timestwo.f90'
|
||
|
if (x/=4) error stop 'failed on second include'
|
||
|
|
||
|
! Most Fortran compilers can't handle the non-standard #include,
|
||
|
! including (ha!) Flang, Gfortran, Ifort and PGI.
|
||
|
! #include "timestwo.f90"
|
||
|
|
||
|
print *, 'OK: Fortran include tests: x=',x
|
||
|
|
||
|
end program
|