AArch64: correct constraint on Upl early clobber alternatives
[official-gcc.git] / gcc / testsuite / gfortran.dg / proc_ptr_comp_28.f90
blob8d46fb5fc0a626617b34d896fe6ad03c1374d7e2
1 ! { dg-do compile }
3 ! PR 47224: [F03] ICE with procedure pointer component
5 ! Contributed by Martien Hulsen <m.a.hulsen@tue.nl>
7 type coefficients_t
8 procedure (real), pointer, nopass :: vfunc
9 end type
11 type(coefficients_t) :: coeff
12 real, dimension(3) :: x
14 print *, abs ( coeff%vfunc ( x(:) ) )
16 end