http://d.puremagic.com/issues/show_bug.cgi?id=3854
Iain Buclaw <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #4 from Iain Buclaw <[email protected]> 2010-03-21 12:04:34 PDT --- Paradoxically, the absent of a trailing comma can trigger this error too. int[][][] a = [[ [1,2],[3,4], ]]; // Error Whereas: int[][][] a = [[ [1,2],[3,4], ],]; // OK Seems like a bug to me, and the patch in bug 3716 resolves this. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
