[Bug fortran/102595] ICE in var_element, at fortran/decl.c:298 since r10-5607-gde89b5748d68b76b
sgk at troutmask dot apl.washington.edu
gcc-bugzilla@gcc.gnu.org
Sun Jan 15 20:17:44 GMT 2023
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102595
--- Comment #9 from Steve Kargl <sgk at troutmask dot apl.washington.edu> ---
On Sun, Jan 15, 2023 at 08:07:16PM +0000, jvdelisle at gcc dot gnu.org wrote:
> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102595
>
> --- Comment #8 from Jerry DeLisle <jvdelisle at gcc dot gnu.org> ---
> I started to do some variations on the z1.f90 case:
>
> program p
> complex, parameter :: x(0) = 2
x is a zero-sized array.
program p
complex, parameter :: x(0) = 2
print *, size(x)
end program p
More information about the Gcc-bugs
mailing list