summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/global_vars_f90_init.f90
blob: 6b228b11ab7d08875d1929d969f58a08e820a824 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
! { dg-do run }
! { dg-additional-sources global_vars_f90_init_driver.c }
module global_vars_f90_init
  use, intrinsic :: iso_c_binding, only: c_int
  implicit none

  integer(c_int), bind(c, name='i') :: I = 2

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_f90_init