view gcc/testsuite/gfortran.dg/c_loc_tests_13.f90 @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +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