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

--- Comment #6 from kargl at gcc dot gnu.org ---
(In reply to Neil Carlson from comment #5)
> Stated a bit more clearly, the question is, whether in
> 
>   The namelist-group-name shall not be a name accessed by use association.
> 
> the name (in the scope of the declaration) is accessed by use association,
> or the name is accessed in another scope by use association.

I've asked on the J3 mailing list for clairfication.  14.2.2
say ", identifiers, and namelist groups in a module."  Namelist 
groups is a bit vague, here.  Does this mean namelist group names 
or namelist group objects.  My current thinking is C8102 is to
prevent

  module foo
    ....
    namelist /bar/ ...
  end module

  program bah
    use foo
    real x
    namelist /bar/x
    ...
  end program bah

where program bar is trying to extend the namelist-group-object-list.

Reply via email to