Retro68/gcc/gcc/testsuite/gfortran.dg/use_28.f90
2014-09-21 19:33:12 +02:00

19 lines
368 B
Fortran

! { dg-do compile }
!
! PR fortran/47203
! The USE statement of a module was not rejected in a procedure with the same
! name if the procedure was contained.
!
! Contributed by Tobias Burnus <burnus@net-b.de>
module m
end module m
call m
contains
subroutine m()
use m ! { dg-error "is also the name of the current program unit" }
end subroutine m
end