URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [nested_array_constructor_4.f90] - Rev 302
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 testIMPLICIT NONECHARACTER(LEN=2) :: xINTEGER :: lengthx = 'a'length = LEN ( (/ TRIM(x), 'a' /) // 'c')IF (length /= 2) THENCALL abort ()END IFEND PROGRAM
