[Bug fortran/60255] Deferred character length variable at (1) cannot yet be associated with unlimited polymorphic entities
antony at cosmologist dot info
gcc-bugzilla@gcc.gnu.org
Thu Feb 27 14:30:00 GMT 2014
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60255
--- Comment #5 from Antony Lewis <antony at cosmologist dot info> ---
The patch generated a SIGSEGV in test code (which works with ifort), but could
be another unrelated issue.
Here's another simple test case for the original issue:
program test
character(LEN=:), allocatable :: S
call subP(S)
contains
subroutine subP(P)
class(*) :: P
end subroutine
end program
More information about the Gcc-bugs
mailing list