Currently, this is valid: ```moonscript f = (...) -> argv = { ... } ``` This behavior should also extend to array literals. However, it currently does not, so the below code is a syntax error: ```moonscript f = (...) -> argv = [ ... ] ``` The produced error: ``` 1: short dot/colon and indexing syntax must be called within a with block argv = [ ... ] ^ ```