Plugins: Add label-text.h to CPPLIB_H so it will be installed [PR115288]
[official-gcc.git] / gcc / testsuite / gfortran.dg / reshape_8.f90
blob56812124cb89f3ea0106ec0cb041dc8fd2e952df
1 ! { dg-do compile }
2 ! { dg-options "-fdump-tree-original" }
4 ! Test the fix for PR96624 in which an attempt was made to assign
5 ! to the zero length temporary created by reshape, resulting in a segfault.
7 ! Contributed by Dong Shenpo <shenpo.dong@compiler-dev.com>
9 program test
10 integer :: a(2,0)
11 a = reshape([1,2,3,4], [2,0])
12 print *, a
13 end
14 ! { dg-final { scan-tree-dump-not "data..0. =" "original" } }