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
Core.invoke
julia> invoke_println(x) = Base.@invoke println(x::Any) invoke_println (generic function with 1 method) julia> code_typed(; optimize=false) do invoke_println(42) end; 42
So invoke_println is wrongly concrete-evaled.
invoke_println
The text was updated successfully, but these errors were encountered:
fix #44763, implement missing effects propagation from abstract_invoke
abstract_invoke
da6b061
fc8ea55
9d35089
inference: implement missing effects propagation from `abstract_invok…
c4a53a8
…e` (#44764) Fix #44763 (cherry picked from commit 9d35089)
No branches or pull requests
So
invoke_println
is wrongly concrete-evaled.The text was updated successfully, but these errors were encountered: