aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.fortran-torture/execute/pr23373-1.f90
blob: 8d5ee658df556cd744345c3c0c11cfefa60d7b15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
program main
  implicit none
  real, dimension (:), pointer :: x
  x => null ()
  x => test (x)
  if (.not. associated (x)) call abort
  if (size (x) .ne. 10) call abort
contains
  function test (p)
    real, dimension (:), pointer :: p, test
    if (associated (p)) call abort
    allocate (test (10))
    if (associated (p)) call abort
  end function test
end program main