The following code fails with `uninitialized constant #<Class:0x68fa70>::A (NameError)` ```ruby m = Module.new m.instance_eval(" class A end class B def initialize() p A end end B.new ") ```
The following code fails with
uninitialized constant #<Class:0x68fa70>::A (NameError)