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
The last statement used to be true:
I = TypeVar(:I, Integer) f{I<:Integer}(v::Vector{I}) = v[1] Base.return_types(f,Tuple{Array{I,1}})==Any[Integer]
but since commit 3b41531 of @simonster it is false. It returns Any[Any] instead.
Any[Any]
The text was updated successfully, but these errors were encountered:
Update to latest Julia master
38e8781
Fix of JuliaLang/julia#11840 incorporated. Julia regression uncovered in tests: JuliaLang/julia#12826
Fix #12826
6768d1e
c41b791
Merge pull request #12828 from JuliaLang/sjk/12826
e427e92
Fix #12826, regression in arrayref inference with TypeVars
Update after fix of #12826
341fac0
JuliaLang/julia#12826 (comment)
No branches or pull requests
The last statement used to be true:
but since commit 3b41531 of @simonster it is false. It returns
Any[Any]
instead.The text was updated successfully, but these errors were encountered: