This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug fortran/81903] [OOP] problem with ASSOCIATE and class pointer (Invalid character in name at)


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

janus at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|compiler reports a language |[OOP] problem with
                   |problem (Invalid character  |ASSOCIATE and class pointer
                   |in name at)                 |(Invalid character in name
                   |                            |at)

--- Comment #2 from janus at gcc dot gnu.org ---
Further reduction:

Implicit None
Type :: TestType_A
  Real :: a
End type

class(TestType_A), Pointer :: TT(:)
real, pointer :: a
associate(y => TT)
    a => y(0)%a
end associate

end

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]