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
warning: the following clause will never match:
{:error, _, _, _, _, _} = error
because it attempts to match on the result of:
choice_with_empty__0(binary, [], [], context, line, byte_offset)
which has type:
dynamic({:ok, term(), term(), term(), term(), term()})
└─ test/nimble_parsec_test.exs: NimbleParsecTest.choice_with_empty/2
warning: the following clause will never match:
{:error, _, _, _, _, _} = error
because it attempts to match on the result of:
optional_ascii__0(binary, [], [], context, line, byte_offset)
which has type:
dynamic({:ok, term(), term(), term(), term(), term()})
└─ test/nimble_parsec_test.exs: NimbleParsecTest.optional_ascii/2
This shows up in our code as well, causing mix compile --warnings-as-errors to fail.
The text was updated successfully, but these errors were encountered:
This shows up in our code as well, causing
mix compile --warnings-as-errors
to fail.The text was updated successfully, but these errors were encountered: