aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr17708.f90
blob: 7485da8bb070a75dd0eaa96bcda1e060b4dc5cda (plain)
1
2
3
4
5
6
7
8
9
! { dg-do run }
      program test
        j = 0
        do 10 i=1,3
           if(i == 2) goto 10 ! { dg-warning "" "" }
           j = j+1
10      enddo
        if (j/=2) call abort
      end