Closed
Description
I do not use other fortran plugins and this feature doens't work for release 2.2.2 (= 2.3.0 Marketplace?).
Example (documentation for intrinsic function max
doesn't show up):
module my
implicit none
contains
subroutine routine(arg)
implicit none
integer :: arg
arg = max(arg, 0)
end subroutine routine
end module my