Skip to content
New issue

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

figure out why we get ambiguity for this futures example #111

Closed
nikomatsakis opened this issue Apr 12, 2018 · 1 comment · Fixed by #296
Closed

figure out why we get ambiguity for this futures example #111

nikomatsakis opened this issue Apr 12, 2018 · 1 comment · Fixed by #296

Comments

@nikomatsakis
Copy link
Contributor

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:

> 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

@krk
Copy link
Contributor

krk commented Oct 31, 2019

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 []

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants