From: Steven G. Kargl Date: Wed, 26 Dec 2018 21:08:53 +0000 (+0000) Subject: re PR fortran/85357 (ICE on invalid code with equal procedure names) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c673c52c2086eca1d178fbfb22e6667a353563c8;p=gcc.git re PR fortran/85357 (ICE on invalid code with equal procedure names) 2018-12-26 Steven G. Kargl PR fortran/85357 * gfortran.df/pr85357.f90: New test. From-SVN: r267423 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 138866b98e3..4b39847d9d8 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2018-12-26 Steven G. Kargl + + PR fortran/85357 + * gfortran.df/pr85357.f90: New test. + 2018-12-24 Steven G. Kargl PR fortran/45513 diff --git a/gcc/testsuite/gfortran.dg/pr85357.f90 b/gcc/testsuite/gfortran.dg/pr85357.f90 new file mode 100644 index 00000000000..22f2d3d3b40 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/pr85357.f90 @@ -0,0 +1,17 @@ +! { dg-do compile } +module base + implicit none +contains + subroutine summation(i) + integer, intent(in) :: i + end subroutine +end module + +module extended + use base + implicit none +contains + subroutine summation() ! { dg-error "is already defined" } + end subroutine ! { dg-error "Expecting END MODULE statement" } +end module +! { dg-prune-output "is already defined at" }