blob: db0d45cb581b7cff3c4c275fa0e9f60439a87d4a [file] [log] [blame]
! { dg-do compile }
program main
implicit none
integer :: iq,nq,recl
DO iq = 1, nq
call foobar ! { dg-error "redefined" }
ENDDO
CONTAINS
subroutine foobar
inquire (iolength=nq) iq ! { dg-error "redefined" }
end subroutine foobar
END program main