blob: 8bd8e1abdfeefe6cf1a14194c488049abd914b39 [file] [log] [blame]
module test
implicit none
private
public helpMe
real :: blah, hi
contains
subroutine helpMe !<<<<< 6, 16, 6, 22, pass
end subroutine
end module test
program p
use test
end program p