2022-05-03 19:16:03 +00:00
|
|
|
error[E0277]: the trait bound `for<'de> EmptyBis<'de>: Foo<'_>` is not satisfied
|
2022-05-03 20:23:30 +00:00
|
|
|
--> $DIR/issue-96223.rs:49:17
|
2022-05-03 19:16:03 +00:00
|
|
|
|
|
|
|
|
LL | icey_bounds(&p);
|
2024-10-24 21:14:17 +00:00
|
|
|
| ----------- ^^ the trait `for<'de> Foo<'_>` is not implemented for `EmptyBis<'de>`
|
2022-05-03 19:16:03 +00:00
|
|
|
| |
|
|
|
|
| required by a bound introduced by this call
|
|
|
|
|
|
|
|
|
= help: the trait `Foo<'de>` is implemented for `Baz<T>`
|
2022-08-15 20:31:37 +00:00
|
|
|
note: required for `Baz<EmptyBis<'de>>` to implement `for<'de> Foo<'de>`
|
2022-05-03 20:23:30 +00:00
|
|
|
--> $DIR/issue-96223.rs:16:14
|
2022-05-03 19:16:03 +00:00
|
|
|
|
|
|
|
|
LL | impl<'de, T> Foo<'de> for Baz<T> where T: Foo<'de> {}
|
2023-01-11 03:21:11 +00:00
|
|
|
| ^^^^^^^^ ^^^^^^ -------- unsatisfied trait bound introduced here
|
2022-08-15 20:31:37 +00:00
|
|
|
note: required for `Empty` to implement `Dummy<EmptyMarker>`
|
2022-05-03 20:23:30 +00:00
|
|
|
--> $DIR/issue-96223.rs:20:9
|
2022-05-03 19:16:03 +00:00
|
|
|
|
|
|
|
|
LL | impl<M> Dummy<M> for Empty
|
|
|
|
| ^^^^^^^^ ^^^^^
|
2023-01-11 03:21:11 +00:00
|
|
|
...
|
|
|
|
LL | for<'de> Baz<<M::Bar as Bar<'de>>::Inner>: Foo<'de>,
|
|
|
|
| -------- unsatisfied trait bound introduced here
|
2022-05-03 19:16:03 +00:00
|
|
|
note: required by a bound in `icey_bounds`
|
2022-05-03 20:23:30 +00:00
|
|
|
--> $DIR/issue-96223.rs:45:19
|
2022-05-03 19:16:03 +00:00
|
|
|
|
|
|
|
|
LL | fn icey_bounds<D: Dummy<EmptyMarker>>(p: &D) {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^ required by this bound in `icey_bounds`
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2022-05-03 19:16:03 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|