OSDN Git Service
(root)
/
pf3gnuchains
/
gcc-fork.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git]
/
gcc
/
testsuite
/
gfortran.dg
/
bind_c_usage_20.f90
1
! { dg-do compile }
2
! { dg-options "-fcheck=bounds" }
3
!
4
! PR fortran/43015
5
!
6
! Contributed by Dennis Wassel
7
!
8
SUBROUTINE foo(msg) BIND(C, name = "Foo")
9
USE, INTRINSIC :: iso_c_binding
10
IMPLICIT NONE
11
CHARACTER (KIND=C_CHAR), INTENT (out) :: msg(*)
12
END SUBROUTINE foo
13