OSDN Git Service

* config/i386/i386.md (UNSPEC_VSIBADDR): New.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / proc_ptr_comp_28.f90
1 ! { dg-do compile }
2 !
3 ! PR 47224: [F03] ICE with procedure pointer component
4 !
5 ! Contributed by Martien Hulsen <m.a.hulsen@tue.nl>
6
7   type coefficients_t
8     procedure (real), pointer, nopass :: vfunc
9   end type
10
11   type(coefficients_t) :: coeff
12   real, dimension(3) :: x
13
14   print *, abs ( coeff%vfunc ( x(:) ) )
15
16 end