You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
private val deployments = Deployments(config.get[List[Deployment]]("deployments").valueOrElse(List.empty))
where Deployment is a case class with some String fields and Deployments is a case class with one field List[Deployment].
Compilation of the code pasted above fails with
[error] 21 | private val deployments = Deployments(config.get[List[Deployment]]("deployments").valueOrElse(List.empty))
[error] | ^
[error] |Reference to method errorJavaListConfigReader in class ConfigReaderInstances0 should not have survived,
[error] |it should have been processed and eliminated during expansion of an enclosing macro or term erasure.
The text was updated successfully, but these errors were encountered:
I have the following line in my code:
where
Deployment
is a case class with some String fields andDeployments
is a case class with one fieldList[Deployment]
.Compilation of the code pasted above fails with
The text was updated successfully, but these errors were encountered: