Was trying to test if formatting our code base with the formatter from 1.6.0-rc0 works. Before: ```elixir Enum.each(& :ok = A.b(nil, {:c, &1})) ``` After: ```elixir Enum.each((&:ok) = A.b(nil, {:c, &1})) ``` Needless to say, this doesn't compile any more.