Mercurial > hg > CbC > CbC_gcc
annotate gcc/testsuite/gfortran.dg/all_bounds_1.f90 @ 132:d34655255c78
update gcc-8.2
author | mir3636 |
---|---|
date | Thu, 25 Oct 2018 10:21:07 +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 ALL intrinsic" } | |
4 program main | |
5 logical(kind=4), allocatable :: f(:,:) | |
6 logical(kind=4) :: res(3) | |
7 character(len=80) line | |
8 allocate (f(2,2)) | |
9 f = .false. | |
10 f(1,1) = .true. | |
11 f(2,1) = .true. | |
12 res = all(f,dim=1) | |
13 write(line,fmt='(80L1)') res | |
14 end program main | |
15 ! { dg-output "Fortran runtime error: Incorrect extent in return value of ALL intrinsic in dimension 1: is 3, should be 2" } | |
16 | |
17 |