plugins: change return codes of geany_load_module() and GeanyPluginFuncs::init
[geany-mirror.git] / tests / ctags / procedure_pointer_module.f90
blob264d8849c80429fe44c1282c70ea7e23f0c8c28a
1 ! a module that uses procedure pointer
2 module proc_pointer
4 real :: a
5 procedure(sub), pointer :: my_pointer
7 contains
9 subroutine sub(x)
10 real, intent(inout) :: x(:)
12 integer :: i
14 do i=1,size(x)
15 x(i) = 0.5**i
16 end do
17 end subroutine sub
19 end module proc_pointer