aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/shape_5.f90
blob: ed128bcd20282304a1cc7ed9d85801b51deb1419 (plain)
1
2
3
4
5
6
7
8
! { dg-do run }
! PR 40067 - this used to segfault on an unallocated return array.
    integer, dimension(10)             :: int1d
    integer, dimension(:), pointer     :: int1d_retrieved

    allocate(int1d_retrieved(10))
    if (any(shape(int1d_retrieved) /= shape(INT1D))) call abort()
    end