This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug fortran/53035] Internal Compiler Error


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53035

--- Comment #4 from kargl at gcc dot gnu.org 2012-04-25 20:15:40 UTC ---
Here's a reduced testcase (15 minutes to reduce!).

module syspars

  implicit none

  character (len = :), allocatable :: lens_dir

  contains

  function get_lens_dir () result (return_lens_dir)
    character (:), allocatable :: return_lens_dir
    return_lens_dir = lens_dir
  end function get_lens_dir

end module syspars

This is most likely a duplicate of one of the other
PRs about deferred type parameters.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]