-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Exception while typing [extremely long type here] #12194
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
Comments
Minimized def test(): Unit =
(??? : Tuple1[ValueOf["foo"]]).toList.map(identity) Seems to be related to the return type of Workaround def test(): Unit =
val t = (??? : Tuple1[ValueOf["foo"]])
t.toList.map(identity) |
The following fails again: var t = (??? : Tuple1[ValueOf["foo"]]); t.toList.map(identity) So it has to do with the fact whether the prefix to |
odersky
added a commit
to dotty-staging/dotty
that referenced
this issue
Apr 23, 2021
Avoid steps can yield match types that should be normalized to keep things clean. This means avoidance does the same steps as simplification in this respect. Fixes scala#12194
Merged
odersky
added a commit
to dotty-staging/dotty
that referenced
this issue
Apr 24, 2021
Avoid steps can yield match types that should be normalized to keep things clean. This means avoidance does the same steps as simplification in this respect. Fixes scala#12194
michelou
pushed a commit
to michelou/scala3
that referenced
this issue
May 1, 2021
Avoid steps can yield match types that should be normalized to keep things clean. This means avoidance does the same steps as simplification in this respect. Fixes scala#12194
liufengyun
pushed a commit
to dotty-staging/dotty
that referenced
this issue
May 3, 2021
Avoid steps can yield match types that should be normalized to keep things clean. This means avoidance does the same steps as simplification in this respect. Fixes scala#12194
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Compiler version
3.0.0-RC3
Minimized code
Output (click arrow to expand)
Crashes on build with
sbt compile
and from the IDE (stack trace is from IDE crash).The text was updated successfully, but these errors were encountered: