I'm trying to create a scopt option for Seq[String]:
import scopt._
import scopt.Read._
opt[Seq[String]]("foobar")
^ error
but the compiler complains that it could not find implicit value for evidence parameter of type scopt.Read[Seq[String]].
I'm using Scala 2.11.2 and scopt 3.3.0.
Am I missing an import or something else?