repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* intrinsic.c: Add EXECUTE_COMMAND_LINE intrinsic.
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
test_common_binding_labels_2.f03
blob
d14c9b1168f7651fe5a9fbbea6330e1306313387
1
! { dg-do compile }
2
module test_common_binding_labels_2
3
use, intrinsic :: iso_c_binding, only: c_double, c_int
4
implicit none
5
6
common /mycom/ r, s
7
real(c_double) :: r
8
real(c_double) :: s
9
bind(c, name="my_common_block") :: /mycom/
10
11
common /com2/ i
12
integer(c_int) :: i
13
bind(c, name="") /com2/
14
end module test_common_binding_labels_2
15