/opt/imh-python/lib/python3.9/site-packages/numpy/f2py/tests/src/crackfortran
NameSizeModeActions
accesstype.f902080644editdlrm
data_stmts.f905800644editdlrm
foo_deps.f901280644editdlrm
gh2848.f902820644editdlrm
gh15035.f3750644editdlrm
gh17859.f3400644editdlrm
gh22648.pyf2410644editdlrm
gh23533.f1260644editdlrm
gh23598.f901010644editdlrm
gh23598Warn.f902050644editdlrm
gh23879.f903320644editdlrm
operators.f9011840644editdlrm
privatemod.f901740644editdlrm
publicmod.f901670644editdlrm
pubprivmod.f901650644editdlrm
unicode_comment.f90980644editdlrm
Edit: /opt/imh-python/lib/python3.9/site-packages/numpy/f2py/tests/src/crackfortran/gh23879.f90 (332B)
module gh23879 implicit none private public :: foo contains subroutine foo(a, b) integer, intent(in) :: a integer, intent(out) :: b b = a call bar(b) end subroutine subroutine bar(x) integer, intent(inout) :: x x = 2*x end subroutine end module gh23879