You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Do not warn in match assertion if variable is reused in pattern
Having the folowing assertion `assert {var, var} = {1, 1}`,
the code produced previously:
[var] = case(right) do
{var, var} ->
#...
[var]
_ ->
#...
end
And with the patch:
[var, var] = case(right) do
{var, var} ->
#...
[var, var]
_ ->
#...
end
0 commit comments