We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32400b2 commit 5ac8958Copy full SHA for 5ac8958
library/src/scala/quoted/Liftable.scala
@@ -241,7 +241,8 @@ object Liftable {
241
242
given [H: Type: Liftable, T <: Tuple: Type: Liftable] as Liftable[H *: T] = new {
243
def toExpr(tup: H *: T): given QuoteContext => Expr[H *: T] =
244
- '{ ${tup.head.toExpr} *: ${tup.tail.toExpr} }
+ '{ ${the[Liftable[H]].toExpr(tup.head)} *: ${the[Liftable[T]].toExpr(tup.tail)} }
245
+ // '{ ${tup.head.toExpr} *: ${tup.tail.toExpr} } // TODO figure out why this fails during CI documentation
246
}
247
248
given as Liftable[BigInt] = new Liftable[BigInt] {
0 commit comments