Sign in
gnu
/
gcc
/
ff4bf326d03e750a8d4905ea49425fe7d15a04b8
/
.
/
gcc
/
testsuite
/
gfortran.dg
/
pr67524.f90
blob: 10a3b6e38406cda733c9b6cf3a777809132d8baf [
file
] [
log
] [
blame
]
!
{
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