diff --git a/sbt-dotty/sbt-test/sbt-dotty/quoted-example-project/src/main/scala/hello/Hello.scala b/sbt-dotty/sbt-test/sbt-dotty/quoted-example-project/src/main/scala/hello/Hello.scala index 24e3146df076..33e64afb763b 100644 --- a/sbt-dotty/sbt-test/sbt-dotty/quoted-example-project/src/main/scala/hello/Hello.scala +++ b/sbt-dotty/sbt-test/sbt-dotty/quoted-example-project/src/main/scala/hello/Hello.scala @@ -1,11 +1,12 @@ package hello -// Import Expr and some extension methods +// Import `Expr` and some extension methods import scala.quoted._ +import scala.quoted.staging.{run, Toolbox} object Main { - implicit val toolbox: scala.quoted.staging.Toolbox = scala.quoted.staging.Toolbox.make(getClass.getClassLoader) + given as Toolbox = Toolbox.make(getClass.getClassLoader) def main(args: Array[String]): Unit = {