-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
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
1.7-beta4: Internal error: encountered unexpected error in runtime #42097
Labels
Milestone
Comments
I believe this is the last Julia call made before the overflow: |
Happens on #41781 as well. |
MWE: struct Foo{F} end
Foo(f::F, args) where {F} = Foo{F}()
Foo(A) = Foo(Any[][1], Any[]...)
foo() = Foo([1,2]...)
@code_warntype foo() |
Bisect says:
|
vtjnash
added a commit
that referenced
this issue
Sep 3, 2021
Otherwise we can can end up in an infinite cycle of attempting const-prop, and that failing. Also handle Varargs in method-lookup matching, which was the cause for which we could not compute the const-prop signature. Fixes #42097
vtjnash
added a commit
that referenced
this issue
Sep 3, 2021
Otherwise we can can end up in an infinite cycle of attempting const-prop, and that failing. Also handle Varargs in method-lookup matching, which was the cause for which we could not compute the const-prop signature. Fixes #42097
vtjnash
added a commit
that referenced
this issue
Sep 3, 2021
Otherwise we can can end up in an infinite cycle of attempting const-prop, and that failing. Also handle Varargs in method-lookup matching, which was the cause for which we could not compute the const-prop signature. Fixes #42097
aviatesk
pushed a commit
that referenced
this issue
Sep 8, 2021
Otherwise we can can end up in an infinite cycle of attempting const-prop, and that failing. Also handle Varargs in method-lookup matching, which was the cause for which we could not compute the const-prop signature. Fixes #42097
aviatesk
pushed a commit
that referenced
this issue
Sep 8, 2021
Otherwise we can end up in an infinite cycle of attempting const-prop, and that failing. Also handle `Varargs` in method-lookup matching, which was the cause for which we could not compute the const-prop signature. Fixes #42097
LilithHafner
pushed a commit
to LilithHafner/julia
that referenced
this issue
Feb 22, 2022
Otherwise we can end up in an infinite cycle of attempting const-prop, and that failing. Also handle `Varargs` in method-lookup matching, which was the cause for which we could not compute the const-prop signature. Fixes JuliaLang#42097
LilithHafner
pushed a commit
to LilithHafner/julia
that referenced
this issue
Mar 8, 2022
Otherwise we can end up in an infinite cycle of attempting const-prop, and that failing. Also handle `Varargs` in method-lookup matching, which was the cause for which we could not compute the const-prop signature. Fixes JuliaLang#42097
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
The text was updated successfully, but these errors were encountered: