Rebase.
[official-gcc.git] / gcc / testsuite / gfortran.dg / test_common_binding_labels_3.f03
blobd851b5e727778f81262035a0e1cab474a52c2995
1 ! { dg-do compile }
2 module test_common_binding_labels_3
3   use, intrinsic :: iso_c_binding, only: c_double
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 end module test_common_binding_labels_3
11 ! { dg-final { keep-modules "" } }