Scala: type mismatch; found: Unit, required: String
The last expression in the block is an assignment or a `for` loop, both of which evaluate to Unit, so the block returns nothing useful. It reads as a compiler mistake because the value the author meant to return is two lines up, discarded by whatever came after it.
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.
// Returns Unit: the assignment is the last expression
def name(user: User): String = {
val n = user.firstName + " " + user.lastName
cachedName = n
}
// Return the value explicitly
def name(user: User): String = {
val n = user.firstName + " " + user.lastName
cachedName = n
n
}
// A for loop is Unit as well: yield makes it a collection
val names = for (u <- users) yield u.firstName
# Turn the silent cases into errors while you are in the file
scalacOptions ++= Seq("-Wvalue-discard", "-Wnonunit-statement", "-Xfatal-warnings")
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
- 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: 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: 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.