Files
rust/tests/ui/traits/next-solver/normalize/two-projection-param-candidates-are-ambiguous.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
807 B
Plaintext
Raw Normal View History

error[E0284]: type annotations needed: cannot normalize `<T as Foo>::Assoc`
--> $DIR/two-projection-param-candidates-are-ambiguous.rs:26:17
2023-02-09 18:57:02 +00:00
|
LL | needs_bar::<T>();
| ^ cannot normalize `<T as Foo>::Assoc`
2023-02-09 18:57:02 +00:00
|
note: required for `T` to implement `Bar`
--> $DIR/two-projection-param-candidates-are-ambiguous.rs:21:9
|
LL | impl<T> Bar for T where T: Foo<Assoc = i32> {}
| ^^^ ^ ----------- unsatisfied trait bound introduced here
2023-02-09 18:57:02 +00:00
note: required by a bound in `needs_bar`
--> $DIR/two-projection-param-candidates-are-ambiguous.rs:23:17
|
LL | fn needs_bar<T: Bar>() {}
| ^^^ required by this bound in `needs_bar`
error: aborting due to 1 previous error
2023-02-09 18:57:02 +00:00
For more information about this error, try `rustc --explain E0284`.