2021-08-27 22:34:48 +00:00
|
|
|
error[E0275]: overflow evaluating the requirement `X<C<'_>>: NotAuto`
|
2021-02-08 22:15:45 +00:00
|
|
|
--> $DIR/lifetime.rs:27:5
|
2020-06-16 17:27:40 +00:00
|
|
|
|
|
|
|
|
LL | is_send::<X<C<'static>>>();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2021-08-27 22:34:48 +00:00
|
|
|
note: required because of the requirements on the impl of `NotAuto` for `Box<X<C<'_>>>`
|
|
|
|
--> $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
|
2021-05-15 16:10:56 +00:00
|
|
|
= note: required because of the requirements on the impl of `NotAuto` for `X<C<'static>>`
|
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`.
|