Kittens - ambiguous imports (again)
问题 This answer https://stackoverflow.com/a/56366311/2682459 shows how it is possible to use an object to provide a custom implementation of a typeclass when using Kitten. Applying the same principle to the following code though doesn't work: package com.xxx.yyy.zzz import cats._, cats.derived._, cats.implicits._ object Test extends App { case class Inner(double: Double) case class Outer(inner: Inner, s: String) implicit object doubleEq extends Eq[Double] { override def eqv(x: Double, y: Double):