blob: 2fec01e3cf9a3e8899310036af8ad99b1985e516 [file] [log] [blame]
! { dg-do compile }
! PR fortran/85001
! Contributed by Gerhard Steinmetz.
program p
type t
end type
call s
contains
real function f(x)
class(t) :: x
dimension :: x(:)
f = 1.0
end
subroutine s
type(t) :: x(2)
real :: z
z = f(x)
end
end