Retro68/gcc/gcc/testsuite/gfortran.dg/pr67524.f90
2018-12-28 16:30:48 +01:00

21 lines
281 B
Fortran

! { dg-do run }
module m
implicit character(8) (a-z)
contains
function f(x)
integer :: x
integer :: f
real :: e
f = x
return
entry e(x)
e = x
end
end module
program p
use m
if (f(1) /= 1) STOP 1
if (e(1) /= 1.0) STOP 2
end