Mercurial > hg > CbC > CbC_gcc
comparison gcc/testsuite/gfortran.dg/data_implied_do_1.f90 @ 111:04ced10e8804
gcc 7
author | kono |
---|---|
date | Fri, 27 Oct 2017 22:46:09 +0900 |
parents | |
children | 84e7813d76e9 |
comparison
equal
deleted
inserted
replaced
68:561a7518be6b | 111:04ced10e8804 |
---|---|
1 ! { dg-do run } | |
2 ! Test of the patch for PR23232, in which implied do loop | |
3 ! variables were not permitted in DATA statements. | |
4 ! | |
5 ! Contributed by Roger Ferrer Ibáñez <rofi@ya.com> | |
6 ! | |
7 PROGRAM p | |
8 REAL :: TWO_ARRAY (3, 3) | |
9 INTEGER :: K, J | |
10 DATA ((TWO_ARRAY (K, J), K = 1, J-1), J = 1, 3) /3 * 1.0/ | |
11 DATA ((TWO_ARRAY (K, J), K = J, 3), J = 1, 3) /6 * 2.0/ | |
12 if (any (reshape (two_array, (/9/)) & | |
13 .ne. (/2.0,2.0,2.0,1.0,2.0,2.0,1.0,1.0,2.0/))) call abort () | |
14 END PROGRAM | |
15 |