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 4e80ddd commit 9658df5Copy full SHA for 9658df5
scio-macros/src/main/scala-3/com/spotify/scio/DerivationUtils.scala
@@ -27,12 +27,12 @@ object DerivationUtils {
27
case _ => Nil
28
}
29
30
- inline given summonAllF[F[_], T <: Tuple]: Widen[T] = {
+ inline given summonAllF[F[_], T <: Tuple]: T = {
31
val res =
32
inline erasedValue[T] match {
33
case _: EmptyTuple => EmptyTuple
34
case _: (t *: ts) => summonInline[F[t]] *: summonAllF[F, ts]
35
36
- res.asInstanceOf[Widen[T]]
+ res.asInstanceOf[T]
37
38
0 commit comments