File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
tests/explicit-nulls/run/tasty-flexible-type Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2,10 +2,10 @@ import scala.quoted.*
22
33object Macros {
44
5- implicit inline def printTree [T ](inline x : T ): Unit =
5+ inline def printTree [T ](inline x : T ): Unit =
66 $ { impl(' x ) }
77
8- def impl [T ](x : Expr [T ])(using Quotes ) : Expr [Unit ] = {
8+ def impl [T ](x : Expr [T ])(using Quotes ): Expr [Unit ] = {
99 import quotes .reflect .*
1010
1111 val tree = x.asTerm
@@ -19,9 +19,9 @@ object Macros {
1919 }
2020 }
2121
22- inline def theTestBlock : Unit = $ { theTestBlockImpl }
22+ inline def theTestBlock : Unit = $ { theTestBlockImpl }
2323
24- def theTestBlockImpl (using qctx : Quotes ) : Expr [Unit ] = {
24+ def theTestBlockImpl (using Quotes ): Expr [Unit ] = {
2525 import quotes .reflect .*
2626
2727 val ft1 = FlexibleType (TypeRepr .of[String ])
You can’t perform that action at this time.
0 commit comments