http://d.puremagic.com/issues/show_bug.cgi?id=3958
Don <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |patch CC| |[email protected] --- Comment #2 from Don <[email protected]> 2010-03-15 12:21:05 PDT --- PATCH(against 2.042): This is trivial. // interpret.c line 2569: if (pthis && fd) { // Member function call if (pthis->op == TOKthis) - pthis = istate->localThis; + pthis = istate ? istate->localThis : NULL; else if (pthis->op == TOKcomma) pthis = pthis->interpret(istate); The second issue is that mixin(null); is never allowed. It's completely unrelated to this bug. Create a new bug for it if you think it matters. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
