Scala 3 Migration Guide

Syntactic Changes

Language

Scala 3 introduces the optional-braces syntax and the new control structure syntax. It comes at the cost of some minimal restrictions in the preexisting syntax.

Other syntactic changes are intended to make the syntax less surprising and more consistent.

It is worth noting that most of the changes can be automatically handled during the Scala 3 migration compilation.

Incompatibility Scala 2.13 Scala 3 Migration Rewrite Scalafix Rule
Restricted keywords    
Procedure syntax Deprecation
Parentheses around lambda parameter    
Open brace indentation for passing an argument    
Wrong indentation      
_ as a type parameter      
+ and - as type parameters      

Restricted Keywords

The list of Scala 3 keywords can be found here. Regular keywords cannot be used as identifiers, whereas soft keywords are not restricted.

For the matter of migrating from Scala 2.13 to Scala 3, only the subset of new regular keywords are problematic. It is composed of:

  • enum
  • export
  • given
  • then
  • =>>
  • ?=>

For instance, the following piece of code can be compiled with Scala 2.13 but not with Scala 3.

object given { // In Scala 3, Error: given is now a keyword.
  val enum = ??? // In Scala 3, Error: enum is now a keyword.

  println(enum) // In Scala 3, Error: enum is now a keyword.
}

The Scala 3 migration compilation rewrites the code into:

-object given {
+object `given` {
-  val enum = ???
+  val `enum` = ???

-  println(enum)
+  println(`enum`)
 }

Procedure Syntax

Procedure syntax has been deprecated for a while and it is dropped in Scala 3.

The following pieces of code are now illegal:

object Bar {
  def print() { // In Scala 3, Error: Procedure syntax no longer supported; `: Unit =` should be inserted here.
    println("bar")
  }
}

The Scala 3 migration compilation rewrites the code into.

 object Bar {
-  def print() {
+  def print(): Unit = {
     println("bar")
   }
 }

Parentheses Around Lambda Parameter

When followed by its type, the parameter of a lambda is now required to be enclosed in parentheses. The following piece of code is invalid.

val f = { x: Int => x * x } // In Scala 3, Error: parentheses are required around the parameter of a lambda.

The Scala 3 migration compilation rewrites the code into:

-val f = { x: Int => x * x }
+val f = { (x: Int) => x * x }

Open Brace Indentation For Passing An Argument

In Scala 2 it is possible to pass an argument after a new line by enclosing it into braces. Although valid, this style of coding is not encouraged by the Scala style guide and is no longer supported in Scala 3.

test("my test")
{ // In Scala 3, Error: This opening brace will start a new statement.
  assert(1 == 1)
}

The Scala 3 migration compiler indents the first line of the block.

 test("my test")
-{
+  {
   assert(1 == 1)
 }

This migration rule applies to other patterns as well, such as refining a type after a new line.

 type Bar = Foo
-{
+  {
   def bar(): Int
 }

A preferable solution is to write:

-test("my test")
-{
+test("my test") {
   assert(1 == 1)
 }

Wrong indentation

The Scala 3 compiler now requires correct indentation. The following piece of code, that was compiled in Scala 2.13, does not compile anymore because of the indentation.

def bar: (Int, Int) = {
  val foo = 1.0
  val bar = foo // [E050] In Scala 3, type Error: value foo does not take parameters.
    (1, 1)
} // [E007] In Scala 3, type Mismatch Error: Found Unit, Required (Int, Int).

The indentation must be fixed.

 def bar: (Int, Int) = {
   val foo = 1.0
   val bar = foo
-    (1, 1)
+  (1, 1)
 }

These errors can be prevented by using a Scala formatting tool such as scalafmt or the IntelliJ Scala formatter. Beware that these tools may change the entire code style of your project.

_ As A Type Parameter

The usage of the _ identifier as a type parameter is permitted in Scala 2.13, even if it has never been mentioned in the Scala 2 specification. It is used in the API of fastparse, in combination with a context bound, to declare an implicit parameter.

def foo[_: Foo]: Unit = ???

Here, the method foo takes a type parameter _ and an implicit parameter of type Foo[_] where _ refers to the type parameter, not the wildcard symbol.

Martin Odersky described this pattern as a “clever exploit of a scalac compiler bug” (source).

The Scala 3 compiler does not permit this pattern anymore:

-- [E040] Syntax Error: src/main/scala/anonymous-type-param.scala:4:10
4 |  def foo[_: Foo]: Unit = ()
  |          ^
  |          an identifier expected, but '_' found

The solution is to give the parameter a valid identifier name, for instance T. This will not break the binary compatibility.

-def foo[_: Foo]: Unit = ???
+def foo[T: Foo]: Unit = ???

+ And - As Type Parameters

+ and - are not valid identifiers for type parameters in Scala 3, since they are reserved for variance annotation.

You cannot write def foo[+] or def foo[-] anymore.

-- Error: src/main/scala/type-param-identifier.scala:2:10 
2 |  def foo[+]: +
  |          ^
  |          no `+/-` variance annotation allowed here

The solution is to choose another valid identifier, for instance T.

However, + and - still are valid type identifiers in general. You can write type +.

Contributors to this page: