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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
reported by @takezoe https://gist.github.com/takezoe/4bfcea77ed53885059f279b35f333733
The text was updated successfully, but these errors were encountered:
A reproduction of this issue:
trait A { val b = bind[B] } trait B { val a = bind[A] }
The current bind[_] impl doesn't pass the seen surface list between trait object factories.
session.getOrElse(Surface.of[A], objectFactory: () => new A with DISupport)
session.getOrElse(Surface.of[B], objectFactory: () => new B with DISupport)
Sorry, something went wrong.
Reproduce wvlet#582
38318ca
9921ecd
As we will deprecate in-trait binding from Scala3, we don't need to address this issue.
xerial
No branches or pull requests
reported by @takezoe https://gist.github.com/takezoe/4bfcea77ed53885059f279b35f333733
The text was updated successfully, but these errors were encountered: