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