! { dg-do compile }! PR fortran/33945!! MODULE PROCEDURE in the interface was wrongly acceptedmodule modproc2
implicit noneinterfacesubroutine x
end subroutine x
end interfaceprocedure(x) :: y
interface bar
module procedure y ! { dg-error "not a module procedure" }end interface bar
end module modproc2
end