blob: 7dbe8029d297693b99fd41197a5b80865a123f12 [file] [log] [blame]
! { dg-do compile }
! PR fortran/83113
module mm
implicit none
interface
module function c()
integer, dimension(2) :: c
end function c
end interface
end module mm
submodule (mm) oo
implicit none
contains
module function c()
integer, dimension(3) :: c
end function c
end submodule oo