diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/generic_11.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/generic_11.f90 | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/generic_11.f90 b/gcc/testsuite/gfortran.dg/generic_11.f90 new file mode 100644 index 000000000..7547a43da --- /dev/null +++ b/gcc/testsuite/gfortran.dg/generic_11.f90 @@ -0,0 +1,31 @@ +! { dg-do compile } +! Test the fix for PR25135 in which the ambiguity between subroutine +! foo in m_foo and interface foo in m_bar was not recognised. +! +!Contributed by Yusuke IGUCHI <iguchi@coral.t.u-tokyo.ac.jp> +! +module m_foo +contains + subroutine foo + print *, "foo" + end subroutine +end module + +module m_bar + interface foo + module procedure bar + end interface +contains + subroutine bar + print *, "bar" + end subroutine +end module + +use m_foo +use m_bar + +call foo ! { dg-error "is an ambiguous reference" } +end +! { dg-final { cleanup-modules "m_foo m_bar" } } + + |