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

Jerry DeLisle <jvdelisle at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jvdelisle at gcc dot gnu.org

--- Comment #4 from Jerry DeLisle <jvdelisle at gcc dot gnu.org> ---
Just to clarify.  Are you saying that this: invalid

   type t(a)
      integer, len :: a
      character(len=a) :: c
   end type

should be: valid

   type t(a)
      integer, len :: a = 2
      character(len=a) :: c
   end type

a is a parameter and c is a component.

?

Some of the I/O touches on pr84143.

Reply via email to