rt_gccstream/gcc/testsuite/gfortran.fortran-torture/compile/module_proc.f90

15 lines
186 B
Fortran

! Check module procedures with arguments
module module_proc
contains
subroutine s(p)
integer p
end subroutine
end module
program test
use module_proc
integer i
call s(i)
end program