reflect: canonicalize types returned by StructOf() and friends
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr61775.f90
blob48ef3cbcbc3d7178e2feacb4152d8e547aebce78
1 ! { dg-do run }
2 ! PR fortran/61775.f90
3 program pi
4 real, allocatable :: x(:)
5 integer :: n
6 n = 10000
7 x = [ (i,i=1,n) ]
8 if (x(n) /= 10000) stop 1
9 end program pi