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 979e441 commit 8931ac1Copy full SHA for 8931ac1
src/main/scala/singleton/ops/impl/GeneralMacros.scala
@@ -1387,10 +1387,12 @@ trait GeneralMacros {
1387
1388
final class MaterializeOpAuxGen(opTpe: Type) {
1389
def usingFuncName : Tree = {
1390
- println(s"usingFuncName: opTpe= $opTpe")
1391
val funcType = opTpe.typeArgs.head.typeSymbol.asType
1392
val opResult = TypeCalc(opTpe)
1393
+ println(s"usingFuncName: opTpe= $opTpe")
1394
+ println(s" funcType= $funcType")
1395
+ println(s" opResult= $opResult")
1396
val genTree = (funcType, opResult) match {
1397
case (funcTypes.ToNat, CalcLit.Int(t)) =>
1398
if (t < 0) abort(s"Nat cannot be a negative literal. Found: $t")
0 commit comments