bisect--helper: reimplement `bisect_state` & `bisect_head` shell functions in C
[git] / t / t4018 / fortran-module-procedure
1  module RIGHT
2
3    implicit none
4    private
5
6    interface letters  ! generic interface
7       module procedure aaaa, &
8                        bbbb, &
9                        ChangeMe, &
10                        dddd
11    end interface
12    
13 end module RIGHT