We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
InexactErrors have often been a source of mystery, e.g.
InexactError
julia> type MyTest{T} value::T end julia> julia> MyTest{Int}(3.1) ------ InexactError -------------------- Stacktrace (most recent call last) [1] — MyTest{Int64}(::Float64) at REPL[1]:2 InexactError()
Would it be possible to say something more helpful, like
InexactError: Trying to convert 3.1 to Int64
The text was updated successfully, but these errors were encountered:
Someone just needs to implement #18521. Volunteering? 😉
Sorry, something went wrong.
Closing as dup
No branches or pull requests
InexactError
s have often been a source of mystery, e.g.Would it be possible to say something more helpful, like
The text was updated successfully, but these errors were encountered: