Actions
Bug #21320
openNamespaces leak with constant lookup
Bug #21320:
Namespaces leak with constant lookup
Description
The following program
X = :top
class C
X = :super
end
class D < C
p X
end
prints :super normally, and :top if running under a namespace.
Actions