Mercurial > hg > CbC > CbC_gcc
annotate gcc/testsuite/gfortran.dg/array_constructor_52.f90 @ 145:1830386684a0
gcc-9.2.0
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 11:34:05 +0900 |
parents | 84e7813d76e9 |
children |
rev | line source |
---|---|
131 | 1 ! { dg-do run } |
2 ! PR 84931 - long array constructors with type conversion were not | |
3 ! handled correctly. | |
4 program test | |
5 implicit none | |
6 integer, parameter :: n = 2**16 | |
7 real, dimension(n) :: y | |
8 integer :: i | |
9 y = (/ (1, i=1, n) /) | |
10 if (y(2) /= 1) stop 1 | |
11 end program test |