Dialyxir.Warnings.CallbackInfoMissing (Dialyxir v1.4.4) 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