2008-07-06 Kai Tietz <kai.tietz@onevision.com>
[official-gcc.git] / gcc / testsuite / gfortran.dg / kind_tests_3.f03
blobaf041b0f9e6e69d7e30cea891fda309b1152ce78
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
7 module my_module
8   use my_kinds
9   real(myFKind), bind(c) :: myF  
10 end module my_module
12 ! { dg-final { cleanup-modules "my_kinds my_module" } }