Project

General

Profile

Bug #4484

Updated by jeremyevans0 (Jeremy Evans) over 4 years ago

=begin 
 
 The following irb session describes the problem: 

  >> String.class_eval { @@string_class_variable = 'should be only in String' } 
  => "should be only in String" 
  >> "WTF?" if Object.class_variables.include? "@@string_class_variable" 
  => "WTF?" 

 Tested on 1.8 and 1.9. 
 I've created the issue in "ruby-18" project because "ruby" project doesn't allow to create new issues. 
 
 =end 
 

Back