I have it:
case test123(&(:some_module.test456(789))) do
end
Error:
invalid args for &, expected an expression in the format of &Mod.fun/arity,
&local/arity or a capture containing at least one argument as &1,
got: :some_module.test456(789)
However, I don't have a parameter to go into it, and before that it was just
fn(_) -> :some_module.test456(789) end
How to fix it? Return to "fn"?
source
share