Yeah, I think we've fixed the others, I just meant this was one more along the same lines.On 4/19/06, Thomas E Enebo <
[EMAIL PROTECTED]> wrote:On Wed, 19 Apr 2006, Charles O Nutter defenestrated me:
>>There have been myriad issues with super in modules...we'll add this>to the list and try
On Wed, 19 Apr 2006, Charles O Nutter defenestrated me:
>
>There have been myriad issues with super in modules...we'll add this
>to the list and try to resolve it.
This is the only remaining super problem we know of now though right? We
ran the guantlet with the others. It is not too
There have been myriad issues with super in modules...we'll add this to the list and try to resolve it.On 4/19/06, Ola Bini <
[EMAIL PROTECTED]> wrote:Hi.I've found something that seems to be a bug.
I have these modules:module A def initialize(stream)super() endendmodu
Hi.
I've found something that seems to be a bug.
I have these modules:
module A
def initialize(stream)
super()
end
end
module B
def initialize
super
end
end
class C
include A, B
def initialize(stream)
super
end
end
Now, accor