aarch64: Add missing ACLE macro for NEON-SVE Bridge
[official-gcc.git] / gcc / testsuite / gfortran.dg / kind_tests_3.f03
blob83cb91e95d6de4c9aa87544b9cf3d4e2bbe1fa43
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