We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
--functions
If we pass --functions=useCalc we get a well-formedness error because compute was not overriden by Iden.
--functions=useCalc
compute
Iden
object DashDashFunctions { trait Calculator { def compute(x: BigInt): BigInt } case class Iden() extends Calculator { override def compute(x: BigInt): BigInt = x + x - x } def useCalc(c: Calculator): BigInt = { val x = c.compute(1) x } }
It seems that the dependencies computation does not pull the children implementation.
The text was updated successfully, but these errors were encountered:
Maybe there is something to add in the dependency graph override
Sorry, something went wrong.
No branches or pull requests
If we pass
--functions=useCalc
we get a well-formedness error becausecompute
was not overriden byIden
.It seems that the dependencies computation does not pull the children implementation.
The text was updated successfully, but these errors were encountered: