Plugins: Add label-text.h to CPPLIB_H so it will be installed [PR115288]
[official-gcc.git] / gcc / testsuite / gfortran.dg / do_check_12.f90
blob71edace0fd856a82a071ce3516904b73f74c8243
1 ! { dg-do run }
2 ! { dg-options "-fcheck=do" }
3 ! { dg-shouldfail "DO check" }
5 program test
6 implicit none
7 integer(1) :: i
8 do i = -HUGE(i)+10, -HUGE(i)-1, -1
9 print *, i
10 end do
11 end program test
12 ! { dg-output "Fortran runtime error: Loop iterates infinitely" }