You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Elixir v1.18 emits a compilation warning like this:
warning: MyModule.my_fun/0 is undefined or private
│
56 │ module.my_fun()
│ ~
│
Expected behavior
The MyModule.my_fun/0 indeed doesn't exist because it's an optional callback, so the function_exported?/3 would never return true, so the that line would never be called. I would say the warning shouldn't be triggered.
Is the warning expected anyway? Is there other ways to write a similar code without triggering the warning?
Thank you.
The text was updated successfully, but these errors were encountered:
Elixir and Erlang/OTP versions
Erlang/OTP 27 [erts-15.2] [source] [64-bit] [smp:10:10] [ds:10:10:10] [async-threads:1] [jit]
Elixir 1.18.1 (compiled with Erlang/OTP 27)
Operating system
MacOs
Current behavior
If I did wrote a code like this:
In Elixir v1.18 emits a compilation warning like this:
Expected behavior
The
MyModule.my_fun/0
indeed doesn't exist because it's an optional callback, so thefunction_exported?/3
would never return true, so the that line would never be called. I would say the warning shouldn't be triggered.Is the warning expected anyway? Is there other ways to write a similar code without triggering the warning?
Thank you.
The text was updated successfully, but these errors were encountered: