about summary refs log tree commit diff
path: root/third_party/git/t/t4018/fortran-module-procedure
 module RIGHT

   implicit none
   private

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