[Scala3] Move OpaqueTypeSpec and DirectionSpec#5399
Open
adkian-sifive wants to merge 1 commit into
Open
Conversation
jackkoenig
reviewed
Jun 2, 2026
Comment on lines
117
to
119
| lazy val elements = SeqMap("underlying" -> gen) | ||
| def underlying = elements.head._2 | ||
| def underlying = elements.head._2.asInstanceOf[T] | ||
| } |
Contributor
There was a problem hiding this comment.
While this code doesn't matter that much, users often look at the tests for examples and this is not the right way to fix this.
What is happening, is that in Scala 2.13, the type of lazy val elements infers to be SeqMap[String, T] (the more specific type), while Scala 3 keeps the type as SeqMap[String, Data]. More to the spirit of the original test would be to add that type annotation and thus remove the need for the cast.
Better yet than that though would be to change this to just:
val underlying = gen
lazy val elements = SeqMap("underlying" -> underlying)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
OpaqueTypeSpec is is causing a compiler crash on
trait MaybeBoxedSummary
OpaqueTypeSpec was hitting two errors in Scala 3:
and
Release Notes
OpaqueTypeSpec now supported in Scala 3