DEBSOURCES
Skip Quicknav
sources / lfortran / 0.45.0-1 / integration_tests / modules_21b.f90
1234567891011
module modules_21b contains subroutine sub(n) integer, intent(in) :: n real, allocatable, dimension(:) :: X allocate(X(n)) end subroutine end module