URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [bind_c_usage_20.f90] - Rev 694
Compare with Previous | Blame | View Log
! { dg-do compile }
! { dg-options "-fcheck=bounds" }
!
! PR fortran/43015
!
! Contributed by Dennis Wassel
!
SUBROUTINE foo(msg) BIND(C, name = "Foo")
USE, INTRINSIC :: iso_c_binding
IMPLICIT NONE
CHARACTER (KIND=C_CHAR), INTENT (out) :: msg(*)
END SUBROUTINE foo