2021-08-27 22:34:48 +00:00
|
|
|
error[E0275]: overflow evaluating the requirement `X<C<'_>>: NotAuto`
|
2021-12-11 02:20:41 +00:00
|
|
|
--> $DIR/lifetime.rs:28:5
|
2020-06-16 17:27:40 +00:00
|
|
|
|
|
|
|
|
LL | is_send::<X<C<'static>>>();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2022-08-15 20:31:37 +00:00
|
|
|
note: required for `Box<X<C<'_>>>` to implement `NotAuto`
|
2021-08-27 22:34:48 +00:00
|
|
|
--> $DIR/lifetime.rs:18:18
|
2021-03-30 20:37:30 +00:00
|
|
|
|
|
2021-08-27 22:34:48 +00:00
|
|
|
LL | impl<T: NotAuto> NotAuto for Box<T> {}
|
|
|
|
| ^^^^^^^ ^^^^^^
|
|
|
|
= note: 3 redundant requirements hidden
|
2022-08-15 20:31:37 +00:00
|
|
|
= note: required for `X<C<'static>>` to implement `NotAuto`
|
2021-07-31 16:26:55 +00:00
|
|
|
note: required by a bound in `is_send`
|
|
|
|
--> $DIR/lifetime.rs:22:15
|
|
|
|
|
|
|
|
|
LL | fn is_send<S: NotAuto>() {}
|
|
|
|
| ^^^^^^^ required by this bound in `is_send`
|
2020-06-16 17:27:40 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0275`.
|