summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/bind_c_usage_7.f03
blob: 73ee6dcd1f4115df0c555348264d4cd280edaac0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
! { dg-do compile }
module x
  use iso_c_binding
  implicit none
contains
  function bar() bind(c) ! { dg-error "cannot be an array" }
    integer(c_int) :: bar(5)
  end function bar

  function my_string_func() bind(c) ! { dg-error "must have length 1" }
    character(kind=c_char, len=10) :: my_string_func
    my_string_func = 'my_string' // C_NULL_CHAR
  end function my_string_func
end module x