summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.fortran-torture/execute/partparm.f90
blob: 9e3de3d651cb7dc8050c846dfa4097e3f3dc4f2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
! Program to test 
subroutine test (p)
   integer, dimension (3) :: p

   if (any (p .ne. (/ 2, 4, 6/))) STOP 1
end subroutine

program partparm
   implicit none
   integer, dimension (2, 3) :: a
   external test

   a = reshape ((/ 1, 2, 3, 4, 5, 6/), (/ 2, 3/))
   call test (a(2, :))
end program