Mercurial > hg > CbC > CbC_gcc
comparison gcc/testsuite/gfortran.dg/entry_16.f90 @ 132:d34655255c78
update gcc-8.2
author | mir3636 |
---|---|
date | Thu, 25 Oct 2018 10:21:07 +0900 |
parents | 84e7813d76e9 |
children |
comparison
equal
deleted
inserted
replaced
130:e108057fa461 | 132:d34655255c78 |
---|---|
36 | 36 |
37 use complex | 37 use complex |
38 type(cx) :: a = cx (1, 2), c, d | 38 type(cx) :: a = cx (1, 2), c, d |
39 logical :: f | 39 logical :: f |
40 integer :: b = 3 | 40 integer :: b = 3 |
41 if (.not.((a + b) .eq. (b + a))) call abort () | 41 if (.not.((a + b) .eq. (b + a))) STOP 1 |
42 if (.not.((a + b) .eq. cx (4, 2))) call abort () | 42 if (.not.((a + b) .eq. cx (4, 2))) STOP 2 |
43 end | 43 end |