Dialyxir.Warnings.FunctionApplicationNoFunction (Dialyxir v1.4.4) View Source
The function being invoked exists, but has an arity mismatch.
Example
defmodule Example do
def ok() do
fun = fn _ -> :ok end
fun.()
end
end
The function being invoked exists, but has an arity mismatch.
defmodule Example do
def ok() do
fun = fn _ -> :ok end
fun.()
end
end