comparison gcc/testsuite/gfortran.dg/bounds_check_6.f90 @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 ! { dg-do run }
2 ! { dg-options "-fbounds-check" }
3 !
4 ! Testcase for PR30655, we used to issue a compile-time warning
5 integer i(12), j
6 j = -1
7 i(0:j) = 42
8 end