3 ! Tests the fix PR40011 comment 17 in which the explicit interface was
4 ! being ignored and the missing argument was not correctly handled, which
7 ! Contributed by Dominique d'Humieres <dominiq@lps.ens.fr
17 Integer, Intent( In
) :: i
18 Integer, Intent( In
) :: j
19 Integer, Intent( In
), Optional
:: k
21 write(*,*)' 3 presence flag ',present(k
)
22 write(*,*)' 1st arg ',i
23 write(*,*)' 2nd arg ',j
25 write(*,*)' 3rd arg ',k
27 write(*,*)' 3rd arg is absent'