summaryrefslogtreecommitdiff
path: root/numpy/f2py/tests/src/crackfortran/gh23598.f90
blob: e0dffb5ef29e3d5ba853ff4dfeda57b2bed6a9dc (plain)
1
2
3
4
integer function intproduct(a, b) result(res)
  integer, intent(in) :: a, b
  res = a*b
end function