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

Harald Anlauf <anlauf at gmx dot de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |anlauf at gmx dot de

--- Comment #2 from Harald Anlauf <anlauf at gmx dot de> ---
There's a subtle wrong-code problem:

  character(huge(1_1)), parameter :: y = 'abc'
  character(   127_1 ), parameter :: z = 'abc'
  print *, len(y), len(z)
end


produces:

           3         127

instead of the expected:

         127         127

Reply via email to