```coffeescript foo = a: 1 b: 2 bar = foo... c: 3 ``` results in ``` error: unexpected ... foo... ^^^ ``` For now we have to use: ```coffeescript bar = { foo..., c: 3 } ``` It's a bit ugly and it adds an exception to the nice CS way of object notation.