ieee_9.f90: XFAIL on arm*-*-gnueabi[hf].
[official-gcc.git] / gcc / testsuite / gfortran.dg / c_loc_tests_15.f90
blobc8d5868705051643654faa0dd63f1ef7180903bf
1 ! { dg-do compile }
3 ! PR 44925: [OOP] C_LOC with CLASS pointer
5 ! Contributed by Barron Bichon <barron.bichon@swri.org>
7 use iso_c_binding
9 type :: t
10 end type t
12 type(c_ptr) :: tt_cptr
13 class(t), pointer :: tt_fptr
14 if (associated(tt_fptr)) tt_cptr = c_loc(tt_fptr) ! { dg-error "shall not be polymorphic" }
16 end