-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Cyclic type involving LazyRef is not detected and crash in Pickler. #2941
Labels
Comments
The avoidance is no longer infinite, but we generate a really funny type: case foo @ _: FooBase =>
foo.derived(???):
FooBase{
This <:
LazyRef(
FooBase{
This <:
LazyRef(
FooBase{
This <:
LazyRef(
FooBase{
This <:
LazyRef(
FooBase{
This <:
LazyRef(
FooBase{
This <:
LazyRef(
FooBase{
This <:
LazyRef(
FooBase{
This <:
LazyRef(
FooBase{
This <:
LazyRef(
FooBase{
This <:
LazyRef(
FooBase
{
This
<:
LazyRef(
FooBase
{
This
<:
LazyRef(
FooBase
{
This
<:
LazyRef(
FooBase
{
This
<:
LazyRef(
FooBase
{
This
<:
LazyRef(
FooBase
{
This
<:
LazyRef(
FooBase
{
This
<:
LazyRef(
FooBase
{
This
<:
LazyRef(
...
{
This
<:
...
}
)
}
)
}
)
}
)
}
)
}
)
}
)
}
)
}
)
}
)
}
)
}
)
}
)
}
)
}
)
}
)
}
)
}
)
}
}
}
} And then stackoverflow in pickling. |
odersky
added a commit
to dotty-staging/dotty
that referenced
this issue
Jan 14, 2018
griggt
added a commit
to griggt/dotty
that referenced
this issue
Jan 31, 2021
michelou
pushed a commit
to michelou/scala3
that referenced
this issue
Feb 5, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The following example triggers an infinite recursion in TypeAssigner.avoid(). The call to avoid() originates from
ensureNoLocalRefs
, and, further up the call stack, from the handling ofmatch
cases (Typer.scala:951). The actual avoidance is performed on aLazyRef
, which is likely at the heart of the problem.The text was updated successfully, but these errors were encountered: