Mercurial > hg > CbC > CbC_gcc
view gcc/testsuite/gfortran.dg/do_check_2.f90 @ 131:84e7813d76e9
gcc-8.2
author | mir3636 |
---|---|
date | Thu, 25 Oct 2018 07:37:49 +0900 |
parents | 04ced10e8804 |
children |
line wrap: on
line source
! { dg-do run } ! { dg-options "-fcheck=do" } ! { dg-shouldfail "DO check" } ! ! PR fortran/34656 ! Run-time check for modifing loop variables ! program test implicit none integer :: i,j do i = 1, 10 call modLoopVar(i) end do contains subroutine modLoopVar(i) integer :: i i = i + 1 end subroutine modLoopVar end program test ! { dg-output "Fortran runtime error: Loop variable has been modified" }