Fl4m3Ph03n1x
Background
I have a very minimalistic function that can return a boolean or blow up:
defmodule TestDialzer do
@spec hello(integer) :: boolean
def hello(n) do
if n == 10 do
true
else
raise "This is not a number!"
end
end
end
As you can see, this function can return a boolean. But it can also not return one. Dialyzer is not picking this up:
Starting Dialyzer
[
check_plt: false,
init_plt: '/home/pedro/Workplace/test_dialzer/_build/dev/dialyxir_erlang-23.3_elixir-1.12.0_deps-dev.plt',
files: ['/home/pedro/Workplace/test_dialzer/_build/dev/lib/test_dialzer/ebin/Elixir.TestDialzer.beam'],
warnings: [:unknown]
]
Total errors: 0, Skipped: 0, Unnecessary Skips: 0
done in 0m0.77s
done (passed successfully)
My spec is incomplete and I expected dialyzer to fail with some kind of error / warning.
Questions
Why is dialyzer not complaining? (rare thing to ask, I know)
Trending in Questions
I having some trouble figuring out if I have set myself too strict of standards for my production server. Currently I can handle 75% of r...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
A little off-topic, but I feel like people here have a good head on their shoulders.
I used to be quite good at making software. Was luc...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ai
- #ecto-query
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #elixirconf-eu
- #api
- #forms
- #metaprogramming
- #hex











Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
kokolegorille
I had a similar question…
al2o3cr
A function can be specced as
no_return, but that’s only applicable if it never returns a value.Otherwise the “can fail” is implied for all functions - for instance,
:math.sqrt/1has a spec ofsqrt(number) :: float, but it gives anArithmeticErrorwhen called with a negative input.Fl4m3Ph03n1x
@peerreynders did find a solution for the issue in your thread right?
However I was not able to understand it quite well …
@al2o3cr I am confused, then what is the point of having
!(bang) functions, if all of them can simply explode whenever they feel like?kokolegorille
The solution proposed was to have smaller functions with correct type…
For example, hello_success and hello_error, of type boolean.
Fl4m3Ph03n1x
The solution was to “not raise” at all, correct ?
kokolegorille
Whatever You choose to return from an error will be catched if it does not specify the right type for the error return, in the smaller function. While your hello function could not, because dialyzer assume it is correctly typed as boolean in case of success, and does not care about the error path.
Fl4m3Ph03n1x
I am sorry but I still dont quite understand.
In this example,
test_hello_2will clearly fail. Dialyzer should be able to prove this is wrong. Yet it passes.I don’t understand how this can be fixed…
michallepicki
Should, based on what exactly?
Dialyzer doesn’t do dependent typing. And it only does a limited amount of data flow analysis, since it is highly computationally and memory intensive. Maybe in this particular case it seems easy and intuitive, but a generalized algorithm that would perform these kinds of checks is not trivial.
AFAIK individual integers (like 10, 1) are not distinguishable by Dialyzer.
michallepicki
If you let dialyzer infer specs for your functions, it will tell you that the
hello(and other functions) returntrue. You can enable checking of your provided specs against those by using theoverspecs,underspecsor the combindedspecdiffsoptions. But beware that this may introduce a lot of noise: warnings when you don’t want them, where dialyzer hits his limits and simplifies types, or you intentionally simplify types, e.g. for documentation purposes.Fl4m3Ph03n1x
Should based on the fact that I have a public function with a direct flow that causes a spec error.
I understand finding paths is computationally intensive, I am not discussing that here.
Perhaps my question can be better rephrased as: How can I make dialyzer detect there is an issue? What code changes would I need to perform?