plugins: plugin loader redesign
[geany-mirror.git] / tests / ctags / qualified_types.f90
blob2ebe8a2745c63976a0a46654dc84409fd6aef15f
1 module test
2 implicit none
3 type goodtype(p1, p2, p3, p4) ! the stuff in brackets after the name of the type shouldn't appear in the type's name
4 ! this is already correctly handled, so that's fine
5 integer, kind :: p1, p3
6 integer, len :: p2, p4 ! the question is whether or not these "kind" and "len"s should be shown as members
7 real(kind=p1) :: c1
8 character(len=p2) :: c2
9 complex :: c3(p3)
10 integer :: c4 = p1
11 contains
12 end module test