view gcc/testsuite/gfortran.dg/bind_c_18.f90 @ 144:8f4e72ab4e11

fix segmentation fault caused by nothing next cur_op to end
author Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sun, 23 Dec 2018 21:23:56 +0900
parents 04ced10e8804
children 1830386684a0
line wrap: on
line source

! { dg-do compile }
! PR fortran/37201
!
! Before character arrays were allowed as bind(C) return value.
!
implicit none
  INTERFACE 
    FUNCTION my() BIND(C,name="my") RESULT(r) ! { dg-error "cannot be an array" }
      USE iso_c_binding
      CHARACTER(kind=C_CHAR) :: r(10)
    END FUNCTION
  END INTERFACE
  INTERFACE 
    FUNCTION two() BIND(C,name="two") RESULT(r) ! { dg-error "cannot be a character string" }
      USE iso_c_binding
      CHARACTER(kind=C_CHAR,len=2) :: r
    END FUNCTION
  END INTERFACE
END