2023-01-08 12:41:09 -06:00
|
|
|
error[E0271]: type mismatch resolving `<Foo<()> as FooLike>::Output == <T as Trait>::Assoc`
|
2022-02-16 09:48:46 -06:00
|
|
|
--> $DIR/bound-normalization-fail.rs:25:32
|
2019-07-03 15:20:16 -05:00
|
|
|
|
|
2022-02-16 09:48:46 -06:00
|
|
|
LL | fn foo_fail<T: Trait>() -> impl FooLike<Output = T::Assoc> {
|
2023-01-08 12:41:09 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ type mismatch resolving `<Foo<()> as FooLike>::Output == <T as Trait>::Assoc`
|
2022-06-07 01:20:13 -05:00
|
|
|
LL |
|
|
|
|
LL | Foo(())
|
|
|
|
| ------- return type was inferred to be `Foo<()>` here
|
2022-02-16 09:48:46 -06:00
|
|
|
|
|
|
|
|
note: expected this to be `()`
|
|
|
|
--> $DIR/bound-normalization-fail.rs:14:19
|
|
|
|
|
|
|
|
|
LL | type Output = T;
|
|
|
|
| ^
|
|
|
|
= note: expected unit type `()`
|
|
|
|
found associated type `<T as impl_trait::Trait>::Assoc`
|
|
|
|
help: consider constraining the associated type `<T as impl_trait::Trait>::Assoc` to `()`
|
|
|
|
|
|
|
|
|
LL | fn foo_fail<T: Trait<Assoc = ()>>() -> impl FooLike<Output = T::Assoc> {
|
|
|
|
| ++++++++++++
|
|
|
|
|
2022-10-24 11:06:25 -05:00
|
|
|
error[E0658]: `impl Trait` return type cannot contain a projection or `Self` that references lifetimes from a parent scope
|
2022-04-28 08:25:36 -05:00
|
|
|
--> $DIR/bound-normalization-fail.rs:41:41
|
2019-07-21 08:37:13 -05:00
|
|
|
|
|
2021-07-16 08:06:26 -05:00
|
|
|
LL | fn foo2_fail<'a, T: Trait<'a>>() -> impl FooLike<Output = T::Assoc> {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-10-24 11:06:25 -05:00
|
|
|
|
|
|
|
|
= note: see issue #103532 <https://github.com/rust-lang/rust/issues/103532> for more information
|
|
|
|
= help: add `#![feature(impl_trait_projections)]` to the crate attributes to enable
|
2019-07-21 08:37:13 -05:00
|
|
|
|
2023-01-08 12:41:09 -06:00
|
|
|
error[E0271]: type mismatch resolving `<Foo<()> as FooLike>::Output == <T as Trait<'a>>::Assoc`
|
2022-04-28 08:25:36 -05:00
|
|
|
--> $DIR/bound-normalization-fail.rs:41:41
|
2022-02-16 09:48:46 -06:00
|
|
|
|
|
|
|
|
LL | fn foo2_fail<'a, T: Trait<'a>>() -> impl FooLike<Output = T::Assoc> {
|
2023-01-08 12:41:09 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ type mismatch resolving `<Foo<()> as FooLike>::Output == <T as Trait<'a>>::Assoc`
|
2022-06-07 01:20:13 -05:00
|
|
|
...
|
|
|
|
LL | Foo(())
|
|
|
|
| ------- return type was inferred to be `Foo<()>` here
|
2022-02-16 09:48:46 -06:00
|
|
|
|
|
|
|
|
note: expected this to be `()`
|
|
|
|
--> $DIR/bound-normalization-fail.rs:14:19
|
|
|
|
|
|
|
|
|
LL | type Output = T;
|
|
|
|
| ^
|
|
|
|
= note: expected unit type `()`
|
2022-10-24 11:37:14 -05:00
|
|
|
found associated type `<T as lifetimes::Trait<'a>>::Assoc`
|
|
|
|
help: consider constraining the associated type `<T as lifetimes::Trait<'a>>::Assoc` to `()`
|
2022-02-16 09:48:46 -06:00
|
|
|
|
|
|
|
|
LL | fn foo2_fail<'a, T: Trait<'a, Assoc = ()>>() -> impl FooLike<Output = T::Assoc> {
|
|
|
|
| ++++++++++++
|
|
|
|
|
2022-04-28 08:25:36 -05:00
|
|
|
error: aborting due to 3 previous errors
|
2019-07-03 15:20:16 -05:00
|
|
|
|
2022-10-24 11:06:25 -05:00
|
|
|
Some errors have detailed explanations: E0271, E0658.
|
2020-05-16 04:10:08 -05:00
|
|
|
For more information about an error, try `rustc --explain E0271`.
|