Retro68/gcc/gcc/testsuite/gfortran.dg/pointer_check_10.f90
2018-12-28 16:30:48 +01:00

17 lines
346 B
Fortran

! { dg-do run }
! { dg-options "-fcheck=all -std=f2003 " }
! { dg-shouldfail "Pointer actual argument 'ptr' is not associated" }
!
! PR fortran/49255
!
! Valid F2008, invalid F95/F2003.
!
integer,pointer :: ptr => null()
call foo (ptr)
contains
subroutine foo (x)
integer, optional :: x
if (present (x)) STOP 1
end subroutine foo
end