aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr83113.f90
blob: 7dbe8029d297693b99fd41197a5b80865a123f12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
! { 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