view gcc/testsuite/gfortran.dg/multiple_allocation_3.f90 @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children 84e7813d76e9
line wrap: on
line source

! { dg-do run }
! PR 49755 - If allocating an already allocated array, and stat=
!            is given, set stat to non zero and do not touch the array.
program test
    integer, allocatable :: A(:, :)
    integer :: stat

    allocate(A(20,20))
    A = 42

    ! Allocate of already allocated variable
    allocate (A(5,5), stat=stat)

    ! Expected: Error stat and previous allocation status
    if (stat == 0) call abort ()
    if (any (shape (A) /= [20, 20])) call abort ()
    if (any (A /= 42)) call abort ()
end program