We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd0d0eb commit 71fad1aCopy full SHA for 71fad1a
src/script/scala/progscala3/BracesSyntax.scala
@@ -3,7 +3,7 @@
3
// For completeness, Scala 2 imports. Still allowed in Scala 3.0:
4
import scala.concurrent._
5
import java.util.{Queue => JQueue}
6
-import java.util.{*, HashMap => _}
+import java.util.{HashMap => _, _}
7
8
// Braces syntax - valid in both Scala 2 and 3
9
// Braces around single expressions can be omitted, but they
src/script/scala/progscala3/IndentationSyntax.scala
// For completeness, Scala 3 imports:
import scala.concurrent.{given, *}
import java.util.Queue as JQueue
-import java.util.{*, HashMap as _}
+import java.util.{HashMap as _, *}
// Significant indentation syntax.
// All the +end identifier+ markers are optional!
0 commit comments