#485 implemented keyword arguments for named functions. However, I would expect that ``` julia (a; b="c") -> a ``` would create an anonymous function that takes a keyword argument `b` with a default value `"c"`. Instead, I currently get ``` ERROR: syntax: malformed function arguments (block a (= b #<julia_value>)) ```