PR fortran/32760
* gfortran.dg/private_type_7.f90: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@126982
138bc75d-0d04-0410-961f-
82ee72b054a4
+2007-07-27 Jerry DeLisle <jvdelisle@gcc.gnu.org>
+
+ PR fortran/32760
+ * gfortran.dg/private_type_7.f90: New test.
+
2007-07-27 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
PR fortran/32035
--- /dev/null
+! { dg-do compile }
+! PR32760 Error defining subroutine named PRINT
+! Test case derived from original PR.
+
+module gfcbug68
+ implicit none
+ private :: write
+
+contains
+
+ function foo (i)
+ integer, intent(in) :: i
+ integer foo
+
+ write (*,*) i
+ call write(i)
+ foo = i
+ end function foo
+
+ subroutine write (m)
+ integer, intent(in) :: m
+ print *, m*m*m
+ end subroutine write
+
+end module gfcbug68
+
+program testit
+ use gfcbug68
+ integer :: i = 27
+ integer :: k
+
+ k = foo(i)
+ print *, "in the main:", k
+end program testit