DEBSOURCES
Skip Quicknav
sources / lfortran / 0.61.0-1 / 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