aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/ISO_Fortran_binding_7.f90
blob: 296cad4dd18e9d37af1700ded03daa4c16e12db6 (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
! { dg-do run { target c99_runtime } }
! { dg-additional-sources ISO_Fortran_binding_7.c }
!
! Test the fix for PR89841.
!
! Contributed by Reinhold Bader  <Bader@lrz.de>
!
program assumed_shape_01
  use, intrinsic :: iso_c_binding
  implicit none
  type, bind(c) :: cstruct
     integer(c_int) :: i
     real(c_float) :: r(2)
  end type cstruct
  interface
     function psub(this, that, case) bind(c, name='Psuba') result(status)
       import :: c_float, c_int, cstruct
       real(c_float) :: this(:,:)
       type(cstruct) :: that(:)
       integer(c_int), value :: case
       integer(c_int) :: status
     end function psub
  end interface

  real(c_float) :: t(3,7)
  type(cstruct), pointer :: u(:)
  type(cstruct), allocatable :: v(:)
  integer(c_int) :: st

  allocate(u(1), source=[cstruct( 4, [1.1,2.2] ) ])
  allocate(v(1), source=[cstruct( 4, [1.1,2.2] ) ])
  t = 0.0
  t(3,2) = -2.0
  st = psub(t, u, 1)
  if (st .ne. 0) stop 1
  st = psub(t, v, 2)
  if (st .ne. 0) stop 2
  deallocate (u)
  deallocate (v)

end program assumed_shape_01