summaryrefslogtreecommitdiff
path: root/t/t4018/fortran-module-procedure
blob: 1ce6d854c22be5942e6d7ae6e4b93125b3232bec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
 module RIGHT
 
   implicit none
   private
 
   interface letters  ! generic interface
      module procedure aaaa, &
                       bbbb, &
                       ChangeMe, &
                       dddd
   end interface
 
end module RIGHT