aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/bind_c_usage_6.f03
blob: 924dd40bc69578be8b84857e18bdae2d5912f1a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
! { dg-do compile }
module x
  use iso_c_binding
  bind(c) :: test, sub1 ! { dg-error "only be used for variables or common blocks" }
  bind(c) :: sub2 ! { dg-error "only be used for variables or common blocks" }
contains
  function foo() bind(c,name="xx")
    integer(c_int),bind(c,name="xy") :: foo ! { dg-error "only be used for variables or common blocks" }
    ! NAG f95: "BIND(C) for non-variable FOO"  
    ! g95: "Duplicate BIND attribute specified"
    ! gfortran: Accepted
    foo = 5_c_int
  end function foo

  function test()
    integer(c_int) :: test
    bind(c,name="kk") :: test ! { dg-error "only be used for variables or common blocks" }
    ! NAG f95: "BIND(C) for non-variable TEST"
    ! gfortran, g95: Accepted
    test = 5_c_int
  end function test

  function bar() bind(c)
    integer(c_int) :: bar 
    bind(c,name="zx") :: bar ! { dg-error "only be used for variables or common blocks" }
    bar = 5_c_int
  end function bar

  subroutine sub0() bind(c)
    bind(c) :: sub0 ! { dg-error "only be used for variables or common blocks" }
  end subroutine sub0

  subroutine sub1(i) bind(c)
    use, intrinsic :: iso_c_binding, only: c_int
    integer(c_int), value :: i
  end subroutine sub1

  subroutine sub2(i) 
    use, intrinsic :: iso_c_binding, only: c_int
    integer(c_int), value :: i
  end subroutine sub2

  subroutine sub3(i) 
    use, intrinsic :: iso_c_binding, only: c_int
    integer(c_int), value :: i
    bind(c) :: sub3 ! { dg-error "only be used for variables or common blocks" }
  end subroutine sub3
end module x