Dialyxir v1.0.0 Dialyxir.Warnings.Call 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