aarch64: Add vector floating point extend pattern [PR113880, PR113869]
[official-gcc.git] / gcc / testsuite / gfortran.dg / pointer_init_5.f90
blobbefb1fe085ce310d9864229c72c9cd49e0f38170
1 ! { dg-do run }
3 ! PR 45290: [F08] pointer initialization
5 ! Contributed by Janus Weil <janus@gcc.gnu.org>
7 module m
9 implicit none
11 procedure(f1), pointer :: pp => f1
13 type :: t
14 procedure(f2), pointer, nopass :: ppc => f2
15 end type
17 contains
19 integer function f1()
20 f1 = 42
21 end function
23 integer function f2()
24 f2 = 43
25 end function
27 end module
30 program test_ptr_init
32 use m
33 implicit none
35 type (t) :: u
37 if (pp()/=42) STOP 1
38 if (u%ppc()/=43) STOP 2
40 end