Scala: recursive value x needs type
A definition refers to its own name on the right hand side, so the compiler cannot infer the type it is in the middle of inferring. It is almost never real recursion: the usual cause is a val that shadows something with the same name, such as a constructor parameter reused as a field.
Quick fix
Read the commands before running them. Anything that restarts a service, deletes data or changes permissions should be tried on a non-production system first.
// Shadowing: the right hand side resolves to the val being defined, not the parameter
def make(config: Config): Server = {
val config = config.withDefaults() // recursive value config needs type
new Server(config)
}
// Rename, which is the fix in most cases
def make(config: Config): Server = {
val resolved = config.withDefaults()
new Server(resolved)
}
// Genuinely recursive definitions need an explicit type annotation
lazy val stream: LazyList[Int] = 1 #:: stream.map(_ + 1)
// Same rule for mutually recursive methods: annotate at least one
def isEven(n: Int): Boolean = n == 0 || isOdd(n - 1)
def isOdd(n: Int): Boolean = n != 0 && isEven(n - 1)
How to diagnose Scala errors
Scala's most distinctive error class is binary incompatibility: libraries are published per Scala major version, and mixing artifacts built for different versions produces confusing "not a member of" or NoSuchMethodError failures. The %% operator in sbt exists precisely to append the right suffix, and most unresolved-dependency errors are a % where %% was needed.
If the quick fix above does not resolve it, work through these steps. They apply to this whole class of error, not just to this one message, which is usually what saves the time.
- Check the Scala version suffix on every dependency. Use
%%for Scala libraries and plain%only for Java ones. - Run
sbt evictedto list dependencies that were evicted by version conflict. A frequent source of runtime NoSuchMethodError. - Use
sbt dependencyTreeto see the resolved graph and locate the transitive dependency pulling in an old version. - For inference failures, add explicit type annotations at the boundary rather than at the error site; inference failures usually propagate from further up.
- Clear stale state with
sbt cleanand remove~/.ivy2/cacheor~/.cache/coursierentries only for the specific failing artifact.
Tools worth reaching for
sbt evictedsbt dependencyTreecoursier resolvescalac -explainMiMa (binary compat checks)
Authoritative references
Primary documentation for this error, worth reading before applying any fix in production.
Related Scala errors
- sbt: Conflicting cross-version suffixes in: org.scala-lang.modulesTwo dependencies pulled in the same library built for different Scala versions, for example…
- Scala 3: no given instance of type X was foundThe compiler needed a contextual value and could not find one in scope. This is Scala 3's…
- Scala: could not find implicit value for parameterThe compiler could not supply an implicit argument, usually because the instance exists but…
- Scala: java.lang.NoSuchMethodError: scala.Predef$.refArrayOpsThe code compiled against one version of the Scala library and is running against another…
- Scala: NoClassDefFoundError: scala/collection/IterableOnceA jar built for a different Scala version is on the classpath. Scala is only binary…
- Scala: sbt unresolved dependencysbt could not download a library: wrong coordinates, a missing resolver, a Scala-version…
- Scala: type mismatch; found: Unit, required: StringThe last expression in the block is an assignment or a `for` loop, both of which evaluate to…
- Scala: value X is not a member of YYou called a method that does not exist on the type, often a missing import for an extension…
Browse other categories
- HTTP 494xx client errors, 5xx server errors, redirects, headers and protocol problems.
- JavaScript 42npm resolution, async pitfalls, hydration, memory limits and runtime type…
- Database 41Connections, deadlocks, constraints, replication and memory limits.
- AI 35Rate limits, context windows, GPU memory and model-serving failures.
- Network 35Refused connections, timeouts, resets, MTU problems and port exhaustion.
- Python 35Imports, virtual environments, encoding, concurrency and dependency conflicts.
- Kubernetes 34CrashLoopBackOff, ImagePullBackOff, OOMKilled, RBAC, scheduling and storage.
- Docker 27Daemon connectivity, disk space, image pulls, ports and architecture mismatches.
- System 26Disk space, systemd units, file descriptors, OOM killer and scheduled jobs.
- Cloud 25IAM permissions, quotas, service limits and credential failures.
- Security 25JWT validation, CSRF, OAuth grants, SELinux, SSH host keys and CSP.
- TLS 24Untrusted authorities, expiry, hostname mismatch, chains and cipher negotiation.
Something missing or wrong?
This entry is maintained by hand. If the fix is out of date, incomplete, or you have a better one, email a correction and it will be reviewed.