Mercurial > hg > CbC > CbC_gcc
annotate gcc/testsuite/gfortran.dg/spread_bounds_1.f90 @ 145:1830386684a0
gcc-9.2.0
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 11:34:05 +0900 |
parents | 04ced10e8804 |
children |
rev | line source |
---|---|
111 | 1 ! { dg-do run } |
2 ! { dg-options "-fbounds-check" } | |
3 ! { dg-shouldfail "Incorrect extent in return value of SPREAD intrinsic in dimension 2: is 3, should be 2" } | |
4 program main | |
5 integer :: source(2), target(2,3) | |
6 data source /1,2/ | |
7 integer :: times | |
8 times = 2 | |
9 target = spread(source,2,times) | |
10 end program main | |
11 ! { dg-output "Fortran runtime error: Incorrect extent in return value of SPREAD intrinsic in dimension 2: is 3, should be 2" } | |
12 |