-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Description
Error messages suggests problem with LazySummon
Base Snippet:
//> using scala "3.2.0"
//> using lib "com.evolution::derivation-circe:0.1-fd8fba2a1f9529f0adc55912129fe9a6974918fc-SNAPSHOT"
import evo.derivation.*
import evo.derivation.circe.*
import evo.derivation.config.Config
import io.circe.Codec
sealed trait MyDataType
final case class Foo(foo: String, bar: Int) extends MyDataType
case object Baz extends MyDataTypeCompiling
object MyDataType:
implicit val config: Config[MyDataType] = Config.derived[MyDataType]
implicit val actionCodec: Codec[MyDataType] =
EvoCodec.derived[MyDataType]object MyDataType:
given Config[MyDataType] = Config.derived[MyDataType]
implicit val actionCodec: Codec[MyDataType] =
EvoCodec.derived[MyDataType]Not compiling
object MyDataType:
implicit val actionCodec: Codec[MyDataType] =
EvoCodec.derived[MyDataType](using Config.derived[MyDataType]) object MyDataType:
val config: Config[MyDataType] = Config.derived[MyDataType]
implicit val actionCodec: Codec[MyDataType] =
EvoCodec.derived[MyDataType](using config) narma
Metadata
Metadata
Assignees
Labels
No labels