Mercurial > hg > CbC > CbC_gcc
annotate gcc/testsuite/gfortran.dg/bound_1.f90 @ 132:d34655255c78
update gcc-8.2
author | mir3636 |
---|---|
date | Thu, 25 Oct 2018 10:21:07 +0900 |
parents | 84e7813d76e9 |
children |
rev | line source |
---|---|
111 | 1 ! { dg-do run } |
2 implicit none | |
3 | |
4 type test_type | |
5 integer, dimension(5) :: a | |
6 end type test_type | |
7 | |
8 type (test_type), target :: tt(2) | |
9 integer i | |
10 | |
11 i = ubound(tt(1)%a, 1) | |
131 | 12 if (i/=5) STOP 1 |
111 | 13 i = lbound(tt(1)%a, 1) |
131 | 14 if (i/=1) STOP 2 |
111 | 15 |
16 i = ubound(tt, 1) | |
131 | 17 if (i/=2) STOP 3 |
111 | 18 i = lbound(tt, 1) |
131 | 19 if (i/=1) STOP 4 |
111 | 20 end |