3 ! PR 46067: [F03] invalid procedure pointer assignment not detected
5 ! Contributed by Stephen J. Bespalko <sjbespa@comcast.net>
14 real function fun_interface(t
,x
)
21 type(test_type
) :: funs
23 procedure(fun_interface
), pointer :: pp
25 pp
=> fun1
! { dg-error "Interface mismatch in procedure pointer assignment" }
31 real function fun1 (t
,x
)
34 print *," id = ", t
%id