2020-06-16 18:27:40 +01: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 12:05:04 +03:00
|
|
|
impl<T: NotAuto> NotAuto for Box<T> {}
|
|
|
|
impl<T: Y> NotAuto for X<T> where T::P: NotAuto {} //~ NOTE: required
|
2023-01-11 03:21:11 +00:00
|
|
|
//~^ NOTE unsatisfied trait bound introduced here
|
2020-06-16 18:27:40 +01:00
|
|
|
impl<'a> NotAuto for C<'a> {}
|
|
|
|
|
|
|
|
fn is_send<S: NotAuto>() {}
|
|
|
|
//~^ NOTE: required
|
2021-07-31 09:26:55 -07:00
|
|
|
//~| NOTE: required
|
2021-12-11 02:20:41 +00:00
|
|
|
|
2020-06-16 18:27:40 +01:00
|
|
|
fn main() {
|
|
|
|
// Should only be a few notes.
|
|
|
|
is_send::<X<C<'static>>>();
|
|
|
|
//~^ ERROR overflow evaluating
|
|
|
|
}
|