In the Scala 3 console (or in Scastie), when running the following code:
import scala.quoted._
val a = Expr("Hello")
The following error results:
-- Error: ----------------------------------------------------------------------
1 |val a = Expr("Hello")
| ^
|No given instance of type quoted.Quotes was found for parameter x$3 of method apply in object Expr
1 error found
Is there an additional step that needs to be done to use macros in the console?