git/t/t4018/fortran-module-procedure

14 lines
249 B
Plaintext

module RIGHT
implicit none
private
interface letters ! generic interface
module procedure aaaa, &
bbbb, &
ChangeMe, &
dddd
end interface
end module RIGHT