2 ! { dg-options "-fwhole-file" }
4 ! Tests the fix PR40011 comment 17 in which the explicit interface was
5 ! being ignored and the missing argument was not correctly handled, which
8 ! Contributed by Dominique d'Humieres <dominiq@lps.ens.fr
18 Integer, Intent( In
) :: i
19 Integer, Intent( In
) :: j
20 Integer, Intent( In
), Optional
:: k
22 write(*,*)' 3 presence flag ',present(k
)
23 write(*,*)' 1st arg ',i
24 write(*,*)' 2nd arg ',j
26 write(*,*)' 3rd arg ',k
28 write(*,*)' 3rd arg is absent'