In Scala 3 it is possible to use _ for type lambda placeholders by setting the -Ykind-projector:underscores compiler flag. When this is enabled _ can no longer be used for wildcards, ? must be used instead. The code gen doesn't support this ATM so you end up with compiler errors from the generated code.
In Scala 3 it is possible to use
_for type lambda placeholders by setting the-Ykind-projector:underscorescompiler flag. When this is enabled_can no longer be used for wildcards,?must be used instead. The code gen doesn't support this ATM so you end up with compiler errors from the generated code.