2022-11-07 12:39:54 +03:00
|
|
|
// check that static methods can assume their trait-ref is well-formed.
|
2015-09-26 01:27:39 +03:00
|
|
|
|
2015-10-02 23:52:18 +03:00
|
|
|
trait Foo<'a, 'b, T>: Sized {
|
2015-09-26 01:27:39 +03:00
|
|
|
fn make_me() -> Self { loop {} }
|
2015-10-02 23:52:18 +03:00
|
|
|
fn static_evil(u: &'b u32) -> &'a u32;
|
2015-09-26 01:27:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
struct Evil<'a, 'b: 'a>(Option<&'a &'b ()>);
|
|
|
|
|
2015-10-02 23:52:18 +03:00
|
|
|
impl<'a, 'b> Foo<'a, 'b, Evil<'a, 'b>> for () {
|
|
|
|
fn make_me() -> Self { }
|
|
|
|
fn static_evil(u: &'b u32) -> &'a u32 {
|
2022-04-01 22:12:17 -04:00
|
|
|
u
|
2015-09-26 01:27:39 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct IndirectEvil<'a, 'b: 'a>(Option<&'a &'b ()>);
|
|
|
|
|
2015-10-02 23:52:18 +03:00
|
|
|
impl<'a, 'b> Foo<'a, 'b, ()> for IndirectEvil<'a, 'b> {
|
2015-09-26 01:27:39 +03:00
|
|
|
fn make_me() -> Self { IndirectEvil(None) }
|
2015-10-02 23:52:18 +03:00
|
|
|
fn static_evil(u: &'b u32) -> &'a u32 {
|
2022-04-01 22:12:17 -04:00
|
|
|
let me = Self::make_me();
|
2015-09-26 01:27:39 +03:00
|
|
|
loop {} // (`me` could be used for the lifetime transmute).
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-02 23:52:18 +03:00
|
|
|
impl<'a, 'b> Evil<'a, 'b> {
|
|
|
|
fn inherent_evil(u: &'b u32) -> &'a u32 {
|
2022-04-01 22:12:17 -04:00
|
|
|
u
|
2015-10-02 23:52:18 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-07 12:39:54 +03:00
|
|
|
// while static methods can *assume* this, we should still
|
|
|
|
// *check* that it holds at the use site.
|
2015-10-02 23:52:18 +03:00
|
|
|
|
|
|
|
fn evil<'a, 'b>(b: &'b u32) -> &'a u32 {
|
2022-04-01 22:12:17 -04:00
|
|
|
<()>::static_evil(b)
|
2022-04-01 13:13:25 -04:00
|
|
|
//~^ ERROR lifetime may not live long enough
|
2015-10-02 23:52:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
fn indirect_evil<'a, 'b>(b: &'b u32) -> &'a u32 {
|
|
|
|
<IndirectEvil>::static_evil(b)
|
2022-04-01 13:13:25 -04:00
|
|
|
//~^ ERROR lifetime may not live long enough
|
2015-10-02 23:52:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
fn inherent_evil<'a, 'b>(b: &'b u32) -> &'a u32 {
|
2021-05-20 10:15:56 -04:00
|
|
|
<Evil>::inherent_evil(b)
|
2022-04-01 13:13:25 -04:00
|
|
|
//~^ ERROR lifetime may not live long enough
|
2015-10-02 23:52:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-26 01:27:39 +03:00
|
|
|
fn main() {}
|