Dialyxir.Warnings.Call (Dialyxir v1.4.3) 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