iex(1)> %{after: a} = %{after: 5}
%{after: 5}
iex(2)> %{after: after} = %{after: 5}
** (SyntaxError) iex:2: syntax error before: 'after'
An error message saying that 'after' is a reserved keyword.
Good call. We can explicitly check for keywords in syntax error before and add a special note. Thanks for the report!
Most helpful comment
Good call. We can explicitly check for keywords in syntax error before and add a special note. Thanks for the report!