plugins: plugin loader redesign
[geany-mirror.git] / tests / ctags / keyword_names.f90
blob70b6407c5e48832d29422627856274f26c93dde7
1 ! For some reason, the Fortran standard does not prohibit this...
3 module Program
5 type Data
6 integer :: contents
7 end type Data
9 integer :: i
11 interface Program
12 function myFunc(arg)
13 !...
14 end function myFunc
15 end interface Program
17 contains
19 function MyFunc(arg)
20 ! ...
21 end function MyFunc
23 end module Program
25 program Interface
26 use Program
27 ! ...
28 end program Interface