------- Comment #3 from dominiq at lps dot ens dot fr 2007-10-10 14:38 ------- Note that the (IMHO) valid code:
program array_char implicit none character (len=2) :: x, y character (len=2) :: z(2) x = "a " y = "cd" z = (/y(1:len(trim(x))), x(1:len(trim(x)))/) ! causes segfault print *, z end program array_char gives also the same ICE: [address=43248000 pc=430c1a90] pr33727_db.f90: In function 'MAIN__': pr33727_db.f90:6: internal compiler error: Segmentation Fault -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33727