rust/src/test/ui/traits/inductive-overflow/lifetime.stderr

23 lines
799 B
Plaintext
Raw Normal View History

error[E0275]: overflow evaluating the requirement `X<C<'_>>: NotAuto`
2021-02-08 22:15:45 +00:00
--> $DIR/lifetime.rs:27:5
|
LL | is_send::<X<C<'static>>>();
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
note: required because of the requirements on the impl of `NotAuto` for `Box<X<C<'_>>>`
--> $DIR/lifetime.rs:18:18
|
LL | impl<T: NotAuto> NotAuto for Box<T> {}
| ^^^^^^^ ^^^^^^
= note: 3 redundant requirements hidden
= note: required because of the requirements on the impl of `NotAuto` for `X<C<'static>>`
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`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0275`.