c: Fix up pointer types to may_alias structures [PR114493]
[official-gcc.git] / gcc / testsuite / gfortran.dg / initialization_21.f90
blobd43447679820216f89fa1b76026fe6f9309055e6
1 ! { dg-do compile }
2 ! { dg-options "-fmax-array-constructor=100000" }
3 ! Test for PR19925
5 program pr19925
6 implicit none
7 integer j
8 integer, parameter :: n = 100000
9 integer, parameter :: i(n) = (/ (j, j=1, n) /)
10 print *, i(5)
11 end program pr19925