summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/named_interface.f90
blob: 29cfae882758a1b05c4cf5a02e6c7c71fcc1d3de (plain)
1
2
3
4
5
6
7
8
9
10
11
! { dg-do compile }
! PR 20363
module snafu
  interface foo
    subroutine really_snafu (foo)        
      integer, intent (inout)  :: foo
    end subroutine really_snafu
  end interface foo
end module snafu

! { dg-final { cleanup-modules "snafu" } }