[Bug fortran/71067] ICE on data initialization with insufficient value
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71067 Martin Liška changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|
[Bug fortran/71067] ICE on data initialization with insufficient value or wrong boz-constants
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71067 --- Comment #1 from Gerhard Steinmetz --- A) correct with parameter : $ cat z3.f90 program p integer, parameter :: i = 0 integer :: z(2) data z /2*i/ print *, z end $ gfortran-6 z3.f90 $ a.out 0 0 B) wrong c