Retro68/gcc/gcc/testsuite/gfortran.dg/global_vars_c_init.f90
2018-12-28 16:30:48 +01:00

17 lines
397 B
Fortran

! { dg-do run }
! { dg-additional-sources global_vars_c_init_driver.c }
module global_vars_c_init
use, intrinsic :: iso_c_binding, only: c_int
implicit none
integer(c_int), bind(c, name='i') :: I
contains
subroutine test_globals() bind(c)
! the value of I is initialized above
if(I .ne. 2) then
STOP 1
endif
end subroutine test_globals
end module global_vars_c_init