aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/bind_c_optional-1.f90
blob: 99409205b6f1466b8e25da96a50ff5bdea427674 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
! { dg-do run }
!
! PR fortran/92872
!
! Contributed by G. Steinmetz
!
module m
contains
subroutine s(x) bind(c)
   integer, allocatable, optional :: x(:)
   x = [1, 2, 3]
end
end

use m
integer, allocatable :: y(:)
! NOTE: starting at 0, otherwise it will fail due to PR 92189
allocate(y(0:2))
y = [9, 8, 7]
call s(y)
if (any (y /= [1, 2, 3])) stop 1
end