aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.fortran-torture/execute/intrinsic_dim.f90
blob: 4753de3606d21a91a8a22752575d3130b3de0060 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
! Program to test the DIM intrinsic
program intrinsic_dim
   implicit none
   integer i, j
   real(kind=4) :: r, s
   real(kind=8) :: p, q

   i = 1
   j = 4
   if (dim (i, j) .ne. 0) call abort
   if (dim (j, i) .ne. 3) call abort
   r = 1.0
   s = 4.0
   if (dim (r, s) .ne. 0.0) call abort
   if (dim (s, r) .ne. 3.0) call abort
   p = 1.0
   q = 4.0
   if (dim (p, q) .ne. 0.0) call abort
   if (dim (q, p) .ne. 3.0) call abort
end program