2020-06-16 12:27:40 -05:00
|
|
|
// Test that we don't hit the recursion limit for short cycles involving lifetimes.
|
|
|
|
|
|
|
|
// Shouldn't hit this, we should realize that we're in a cycle sooner.
|
|
|
|
#![recursion_limit="20"]
|
|
|
|
|
|
|
|
trait NotAuto {}
|
|
|
|
trait Y {
|
|
|
|
type P;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Y for C<'a> {
|
|
|
|
type P = Box<X<C<'a>>>;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct C<'a>(&'a ());
|
|
|
|
struct X<T: Y>(T::P);
|
|
|
|
|
2023-03-05 03:05:04 -06:00
|
|
|
impl<T: NotAuto> NotAuto for Box<T> {}
|
|
|
|
impl<T: Y> NotAuto for X<T> where T::P: NotAuto {} //~ NOTE: required
|
2023-01-10 21:21:11 -06:00
|
|
|
//~^ NOTE unsatisfied trait bound introduced here
|
2020-06-16 12:27:40 -05:00
|
|
|
impl<'a> NotAuto for C<'a> {}
|
|
|
|
|
|
|
|
fn is_send<S: NotAuto>() {}
|
|
|
|
//~^ NOTE: required
|
2021-07-31 11:26:55 -05:00
|
|
|
//~| NOTE: required
|
2021-12-10 20:20:41 -06:00
|
|
|
|
2020-06-16 12:27:40 -05:00
|
|
|
fn main() {
|
|
|
|
// Should only be a few notes.
|
|
|
|
is_send::<X<C<'static>>>();
|
|
|
|
//~^ ERROR overflow evaluating
|
|
|
|
}
|