blob: 12506f54d183f5b376109d95ed7f0a61450cd82f [file] [log] [blame]
call sub1()
contains
subroutine sub1
integer :: a, b
dimension a(3, 4:5)
print *, a
call new_procedure(b)
print *, implicit1
print *, implicit2
if (implicit2 .gt. 3) then
print *, "OK"
end if
end subroutine
subroutine new_procedure(b)
implicit none
integer :: b
print *, b !<<<<<START !<<<<<END
end subroutine
subroutine x
end subroutine x
end program