aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/binding_label_tests_11.f03
blob: 8dcf99869fcf6b87114f5318c656608307e634f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
! { dg-do compile }
! This file must be compiled BEFORE binding_label_tests_11_main.f03, which it 
! should be because dejagnu will sort the files.
module binding_label_tests_11
  use iso_c_binding, only: c_int
  implicit none
contains
  function one() bind(c, name="c_one")
    integer(c_int) one
    one = 1
  end function one
end module binding_label_tests_11
! { dg-final { keep-modules "" } }