summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr70006.f90
blob: 97b41709769cb357b20b79b0eb8fdbcf1790fb46 (plain)
1
2
3
4
5
6
7
8
9
! { dg-do compile }
program test
   print 1, 'string 1' ! { dg-error "FORMAT label 1" " " }
   print 1, 'string 2' ! { dg-error "FORMAT label 1" " " }
!1 format(a)
   goto 2 ! { dg-error "Label 2 referenced" " " }
   goto 2 ! { dg-error "Label 2 referenced" " " }
!2 continue
end program