view gcc/testsuite/gfortran.dg/c_loc_tests_13.f90 @ 118:fd00160c1b76

ifdef TARGET_64BIT
author mir3636
date Tue, 27 Feb 2018 15:01:35 +0900
parents 04ced10e8804
children
line wrap: on
line source

! { dg-do compile }
!
! PR fortran/38536  
! Consecutive array and substring references rejected as C_LOC argument
!
! contributed by Scot Breitenfield <brtnfld@hdfgroup.org>

  USE ISO_C_BINDING
  TYPE test
     CHARACTER(LEN=2), DIMENSION(1:2) :: c
  END TYPE test
  TYPE(test), TARGET :: chrScalar
  TYPE(C_PTR) :: f_ptr

  f_ptr = C_LOC(chrScalar%c(1)(1:1))
  END