forked from mirror/waf
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.
22 lines
364 B
Fortran
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
|