DEBSOURCES
Skip Quicknav
sources / lfortran / 0.59.0-3 / tests / errors / incorrect_number_args_subroutine.f90
123456789
program expr implicit none call my_func(1) contains subroutine my_func() print *, "hi" end subroutine end program expr