Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gfortran.fortran-torture / execute / intrinsic_size.f90
blobd84e7e6dcae50824c3d8372396a6f999f071093c
1 ! Program to test the SIZE intrinsics
2 program testsize
3 implicit none
4 real, dimension(:, :), allocatable :: a
5 integer, dimension(5) :: j
6 integer, dimension(2, 3) :: b
7 integer i
9 if (size (b(2, :), 1) .ne. 3) STOP 1
11 allocate (a(3:8, 5:7))
13 ! With one parameter
14 if (size(a) .ne. 18) STOP 2
16 ! With two parameters, assigning to an array
17 j = size(a, 1)
18 if (any (j .ne. (/6, 6, 6, 6, 6/))) STOP 3
20 ! With a variable second parameter
21 i = 2
22 i = size(a, i)
23 if (i .ne. 3) STOP 4
25 call test(a)
26 contains
28 subroutine test (a)
29 real, dimension (1:, 1:) :: a
30 integer i
32 i = 2
33 if ((size(a, 1) .ne. 6) .or. (size(a, i) .ne. 3)) STOP 5
34 if (size (a) .ne. 18 ) STOP 6
35 end subroutine
36 end program