Please bear with me if it is already discussed; I am running the following code
class Tester
   def sayHello
      hi
      puts "I am saying hello"
    end
    
    private
    def hi
       puts "Did I say hi?"
    end   
    
    private :hi    #doube checking private
end

p = Tester.new
p.hi
p.sayHello

As per ruby, it should fail but Ironruby runs through without any error. I am 
going through the code to see where it is performed.

Thanks.
Unni


_______________________________________________
Ironruby-core mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/ironruby-core

Reply via email to