You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
waf_old/demos/fortran/mod/uses_two_mods.f90

22 lines
364 B
Fortran

! FIXME:
! modifying two_mods.f90 should trigger this file's recompilation, too.
module uses_TWO_mods
use mod2
implicit none
integer, parameter :: uses_two_mods_param = mod2_param * 2
contains
subroutine printer
implicit none
print *, uses_two_mods_param
end subroutine printer
end module uses_TWO_mods