Soso Soso wrote: > I know that, but if you look at the code carefully you will see that I > am trying to call base method 'knox' from inside 'test' method. So > parent() will try to call base method of 'test', which is not what I > want. > > -soso Can you explain your reasoning for this? I don't believe this is supported. Why would you use method overloading if you want to access the parent's method of the same name? Why not call your method in Child child_knox, or something of the sort. -- Posted via http://www.ruby-forum.com/.