@@ -1217,13 +1217,19 @@ object DFVal extends DFValLP:
12171217 case (lhs : Int , rhs : Int ) => scala.runtime.RichInt (lhs) max rhs
12181218 case (lhs : Long , rhs : Long ) => scala.runtime.RichLong (lhs) max rhs
12191219 case (lhs : Double , rhs : Double ) => scala.runtime.RichDouble (lhs) max rhs
1220- case _ => exactOp2[FuncOp .max.type , DFC , DFValAny ](lhs, rhs)(using DFC .onDemand)
1220+ case _ =>
1221+ exactOp2[FuncOp .max.type , DFC , DFValAny ](lhs, rhs)(using
1222+ compiletime.summonInline[DFCG ]
1223+ )
12211224 transparent inline def min (inline rhs : SupportedValue ): Any =
12221225 inline (lhs, rhs) match
12231226 case (lhs : Int , rhs : Int ) => scala.runtime.RichInt (lhs) min rhs
12241227 case (lhs : Long , rhs : Long ) => scala.runtime.RichLong (lhs) min rhs
12251228 case (lhs : Double , rhs : Double ) => scala.runtime.RichDouble (lhs) min rhs
1226- case _ => exactOp2[FuncOp .min.type , DFC , DFValAny ](lhs, rhs)(using DFC .onDemand)
1229+ case _ =>
1230+ exactOp2[FuncOp .min.type , DFC , DFValAny ](lhs, rhs)(using
1231+ compiletime.summonInline[DFCG ]
1232+ )
12271233 end extension
12281234 extension (inline lhs : SupportedValue )
12291235 transparent inline def as (inline aliasType : DFType .Supported )(using DFCG ): DFValAny =
0 commit comments