URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [nested_array_constructor_4.f90] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do run }
! PR fortran/35846
! Alternate test that also produced an ICE because of a missing length.
PROGRAM test
IMPLICIT NONE
CHARACTER(LEN=2) :: x
INTEGER :: length
x = 'a'
length = LEN ( (/ TRIM(x), 'a' /) // 'c')
IF (length /= 2) THEN
CALL abort ()
END IF
END PROGRAM
Go to most recent revision | Compare with Previous | Blame | View Log