```ruby class Foo def test TEST end end Bar1 = Foo.clone Bar1::TEST = 1 p Bar1.new.test # 1 on MRI 2.4.x ~ 3.0.0, NameError on TruffleRuby 21.0.0 ```