URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [execute/] [pr19269-1.f90] - Rev 695
Compare with Previous | Blame | View Log
program maincall test (reshape ((/ 'a', 'b', 'c', 'd' /), (/ 2, 2 /)))containssubroutine test (a)character (len = *), dimension (:, :) :: aif (size (a, 1) .ne. 2) call abortif (size (a, 2) .ne. 2) call abortif (len (a) .ne. 1) call abortif (a (1, 1) .ne. 'a') call abortif (a (2, 1) .ne. 'b') call abortif (a (1, 2) .ne. 'c') call abortif (a (2, 2) .ne. 'd') call abortend subroutine testend program main
