URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [execute/] [data_2.f90] - Rev 695
Compare with Previous | Blame | View Log
! Check more array variants of the data statementprogram data_2implicit nonetype tinteger iend type tinteger, dimension(3) :: atype (t), dimension(3) :: binteger, dimension(2,2) :: cdata a(:), b%i /1, 2, 3, 4, 5, 6/data c(1, :), c(2, :) /7, 8, 9, 10/if (any (a .ne. (/1, 2, 3/))) call abort ()if (any (b%i .ne. (/4, 5, 6/))) call abort ()if ((any (c(1, :) .ne. (/7, 8/))) &.or. (any (c(2,:) .ne. (/9, 10/)))) call abort ()end program
