plugins: plugin loader redesign
[geany-mirror.git] / tests / ctags / fortran_associate.f90
blobd326749a22c6e0b80a37d6f19e764143a7a1a028
1 module with_associate
2 real :: a
4 contains
6 function do_stuff(a) result(c)
7 real, intent(in) :: a
9 associate (b => a)
10 c = b
11 end associate
12 end function do_stuff
14 subroutine do_other_stuff(a)
15 real, intent(in out) :: a
17 a = 2 * a
18 end subroutine do_other_stuff
20 end module with_associate