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
Given the traits/types found in this gist:
https://gist.github.com/nikomatsakis/58717b0588393ca14f2d6168e7c86188
Why do we get ambiguity here?
> target/debug/chalki --program=$HOME/tmp/futures-model.chalk --goal='forall<T> { if (T: FutureResult) { exists<I, E> { T: Future<Output = Result<I, E>> } } }' Ambiguous; no inference guidance
Note that if we (hackily) don't force the solver to give us back a result for I and E, we get Unique as expected:
I
E
Unique
> target/debug/chalki --program=$HOME/tmp/futures-model.chalk --goal='forall<T> { if (T: FutureResult) { T: Future, exists<I, E> { T: Future<Output = Result<I, E>> } } }' Unique; substitution [], lifetime constraints []
cc @scalexm, who wanted to investigate this
The text was updated successfully, but these errors were encountered:
Goal no longer gives ambiguous as a result with ef45646:
?- forall<T> { if (T: FutureResult) { exists<I, E> { T: Future<Output = Result<I, E>> } } } Unique; substitution [?0 := (FutureResult::Item)<!1_0>, ?1 := (FutureResult::Error)<!1_0>], lifetime constraints []
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Given the traits/types found in this gist:
https://gist.github.com/nikomatsakis/58717b0588393ca14f2d6168e7c86188
Why do we get ambiguity here?
Note that if we (hackily) don't force the solver to give us back a result for
I
andE
, we getUnique
as expected:cc @scalexm, who wanted to investigate this
The text was updated successfully, but these errors were encountered: