aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/impl_do_var_data.f90
blob: 44c097e47ca73aad4e37eec20c36af3b24e0e2ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
! { dg-do run }
! PR 80442
! This test case used to produce an bogus error
! about the variables being below the lower
! array bounds
program main
    implicit none
    integer:: i
    integer, dimension(3):: A
    data (A(i:i+2:i+1), i=1,2) /1, 2, 3/
    if(any(A .ne. [1,3,2])) STOP 1
end program