re PR fortran/32760 (Error defining subroutine named PRINT)

2007-07-27  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

	PR fortran/32760
	* gfortran.dg/private_type_7.f90: New test.

From-SVN: r126982
This commit is contained in:
Jerry DeLisle 2007-07-27 16:33:50 +00:00
parent 4958f4ee0b
commit 7aa34e7a72
2 changed files with 39 additions and 0 deletions

View File

@ -1,3 +1,8 @@
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

View File

@ -0,0 +1,34 @@
! { 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