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
PR c++/27177
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
kind_tests_3.f03
blob
af041b0f9e6e69d7e30cea891fda309b1152ce78
1
! { dg-do compile }
2
module my_kinds
3
use, intrinsic :: iso_c_binding
4
integer, parameter :: myFKind = c_float
5
end module my_kinds
6
7
module my_module
8
use my_kinds
9
real(myFKind), bind(c) :: myF
10
end module my_module
11
12
! { dg-final { cleanup-modules "my_kinds my_module" } }