Skip to content

Commit 2899e96

Browse files
committed
Fix test
1 parent 4b1beda commit 2899e96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/run-macros/string-context-implicits/Macro_1.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ private def showMeExpr(sc: Expr[StringContext], argsExpr: Expr[Seq[Any]])(using
1111
val showTp = Type[Show[tp]]
1212
Expr.summon(using showTp) match {
1313
case Some(showExpr) => '{ $showExpr.show($arg) }
14-
case None => report.error(s"could not find implicit for ${Type.show[Show[Tp]]}", arg); '{???}
14+
case None => report.error(s"could not find implicit for ${Type.show[Show[tp]]}", arg); '{???}
1515
}
1616
}
1717
val newArgsExpr = Varargs(argShowedExprs)

0 commit comments

Comments
 (0)