]> git.ipfire.org Git - thirdparty/git.git/blob - t/t4018/fortran-module-procedure
Merge branch 'ds/maintenance-commit-graph-auto-fix'
[thirdparty/git.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