[Bug fortran/79685] [5/6/7 Regression] ICE on valid code in gfc_match_structur_constructor
janus at gcc dot gnu.org
gcc-bugzilla@gcc.gnu.org
Sat Apr 15 17:06:00 GMT 2017
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79685
janus at gcc dot gnu.org changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |janus at gcc dot gnu.org
Known to fail| |4.7.4, 5.4.1, 6.3.0
--- Comment #3 from janus at gcc dot gnu.org ---
Slightly reduced test case:
module omega_color
implicit none
type omega_color_factor
integer :: i
end type
end module
module foo
use omega_color, OCF => omega_color_factor
implicit none
type(OCF) :: table_color_factors
data table_color_factors / OCF(1) /
end module
More information about the Gcc-bugs
mailing list