Mercurial > hg > CbC > CbC_gcc
view 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 |
line wrap: on
line source
! { dg-do run } ! PR 84931 - long array constructors with type conversion were not ! handled correctly. program test implicit none integer, parameter :: n = 2**16 real, dimension(n) :: y integer :: i y = (/ (1, i=1, n) /) if (y(2) /= 1) stop 1 end program test