Given the following minimum code:
package object MyPackage { case class Pimp(private val i: Int) extends AnyVal }
SBT (0.13.8) complains:
[warn] sbt-api: Unhandled type class scala.reflect.internal.Types$MethodType : ($this: myPackage.package.Pimp)Int
My build file is something like this:
Project("sbtissue", file("sbtissue")).settings(scalaVersion := "2.11.6")
Change the corresponding line in the source file to:
class Pimp(private val i: Int) extends AnyVal
or
case class Pimp(i: Int) extends AnyVal
does not cause compilation warning. What can I do to prevent this warning?
Related: https://groups.google.com/forum/#!topic/simple-build-tool/KWdg4HfYqMk
source share