Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
! RUN: %S/test_errors.sh %s %t %f18
module m
interface a
subroutine s(x)
real :: x
end subroutine
!ERROR: 's' is already declared in this scoping unit
integer :: x
end interface
end module
module m2
interface s
module m3
subroutine s
end
contains