Dialyxir.Warnings.Call (Dialyxir v1.4.4) View Source
The function call will not succeed.
Example
defmodule Example do
def ok() do
ok(:error)
end
def ok(:ok) do
:ok
end
end
The function call will not succeed.
defmodule Example do
def ok() do
ok(:error)
end
def ok(:ok) do
:ok
end
end