Dialyxir v1.0.0 Dialyxir.Warnings.CallbackInfoMissing View Source

The module is using a behaviour that does not exist or is not a behaviour. This is also a compiler warning.

Example

defmodule Example do
  @behaviour BehaviourThatDoesNotExist

  def ok() do
    :ok
  end
end