1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
! { dg-do compile } ! ! PR fortran/47377 ! ! Contributed by <thenlich@users.sourceforge.net> ! program testgferr real, pointer :: y y => f() ! { dg-error "must deliver a pointer result" } contains function f() real :: f f = 5 end function f end program testgferr