DEBSOURCES
Skip Quicknav
sources / lfortran / 0.45.0-1 / tests / scopes1.f90
1234567891011121314
program scopes1 implicit none integer :: i, j j = 1 call f(i) contains subroutine f(b) integer, intent(out) :: b b = j + 1 end subroutine end program