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

--- Comment #3 from janus at gcc dot gnu.org ---
Further reduction:


  type :: b
     integer, allocatable :: a
  end type

  call add(b(null()))

contains

  subroutine add (c)
    type(b), value :: c
  end subroutine

end

Reply via email to