You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is not a bug, you get a stack overflow at runtime. Basically forward_missing_to just declares method_missing that forwards the call. So your code becomes:
In that method x is a call, and we hit method_missing again, thus generating:
classXdefx
x.x
endend
and there's the stack overflow.
I guess this will be more evident once we can say "Segmentation fault" and show some of the stack trace instead of a mere segfault. I'll relate #271 to this.
The text was updated successfully, but these errors were encountered: