Skip to content

Commit 4d79c90

Browse files
committed
Fix repl-staging test
1 parent c5ca1f8 commit 4d79c90

File tree

1 file changed

+1
-1
lines changed
  • staging/test-resources/repl-staging

1 file changed

+1
-1
lines changed

staging/test-resources/repl-staging/i6007

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ scala> import scala.quoted.staging._
33
scala> implicit def toolbox: Toolbox = Toolbox.make(getClass.getClassLoader)
44
def toolbox: quoted.staging.Toolbox
55
scala> def v(given QuoteContext) = '{ (if true then Some(1) else None).map(v => v+1) }
6-
def v given (x$1: quoted.QuoteContext): quoted.Expr[Option[Int]]
6+
def v(given x$1: quoted.QuoteContext): quoted.Expr[Option[Int]]
77
scala> scala.quoted.staging.withQuoteContext(v.show)
88
val res0: String = (if (true) scala.Some.apply[scala.Int](1) else scala.None).map[scala.Int](((v: scala.Int) => v.+(1)))
99
scala> scala.quoted.staging.run(v)

0 commit comments

Comments
 (0)