https://gcc.gnu.org/bugzilla/show_bug.cgi?id=84784

--- Comment #1 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
The test gfortran.dg/team_change_1.f90 compiles and run if I replace the lines

  integer, parameter :: standard_initial_value=-1
  integer new_team

with

  integer(4), parameter :: standard_initial_value=-1
  integer(4) new_team

but I get the same ICE with

  integer(8), parameter :: standard_initial_value=-1
  integer(8) new_team

Reply via email to