https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64932
Tobias Burnus <burnus at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice-on-valid-code Status|UNCONFIRMED |NEW Last reconfirmed| |2015-02-04 CC| |burnus at gcc dot gnu.org Known to work| |4.7.2, 4.8.2 Ever confirmed|0 |1 Known to fail| |5.0 --- Comment #1 from Tobias Burnus <burnus at gcc dot gnu.org> --- Reduced test case: module coo_graphs implicit none type :: dynamic_array integer :: length, capacity, min_capacity integer, allocatable :: array(:) end type type :: coo_graph type(dynamic_array) :: edges(2) integer, private :: ne end type coo_graph contains subroutine coo_dump_edges(g, edges) class(coo_graph), intent(in) :: g integer, intent(out) :: edges(:,:) end subroutine coo_dump_edges end module coo_graphs