diff --git a/sbt-dotty/sbt-test/sbt-dotty/tasty-inspector-example-project/app/Main.scala b/sbt-dotty/sbt-test/sbt-dotty/tasty-inspector-example-project/app/Main.scala index de4009e39228..2adfc215c442 100644 --- a/sbt-dotty/sbt-test/sbt-dotty/tasty-inspector-example-project/app/Main.scala +++ b/sbt-dotty/sbt-test/sbt-dotty/tasty-inspector-example-project/app/Main.scala @@ -7,7 +7,7 @@ object Main extends App { val inspector = new TastyInspector { protected def processCompilationUnit(reflect: Reflection)(root: reflect.Tree): Unit = { - import reflect._ + import reflect.{given, _} val tastyStr = root.show println(tastyStr) }