2015-10-02 20:52:18 +00:00
|
|
|
// check that static methods don't get to assume their trait-ref
|
|
|
|
// is well-formed.
|
|
|
|
// FIXME(#27579): this is just a bug. However, our checking with
|
|
|
|
// static inherent methods isn't quite working - need to
|
|
|
|
// fix that before removing the check.
|
2015-09-25 22:27:39 +00:00
|
|
|
|
2015-10-02 20:52:18 +00:00
|
|
|
trait Foo<'a, 'b, T>: Sized {
|
2015-09-25 22:27:39 +00:00
|
|
|
fn make_me() -> Self { loop {} }
|
2015-10-02 20:52:18 +00:00
|
|
|
fn static_evil(u: &'b u32) -> &'a u32;
|
2015-09-25 22:27:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct Evil<'a, 'b: 'a>(Option<&'a &'b ()>);
|
|
|
|
|
2015-10-02 20:52:18 +00: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-02 02:12:17 +00:00
|
|
|
u
|
2022-04-01 17:13:25 +00:00
|
|
|
//~^ ERROR lifetime may not live long enough
|
2015-09-25 22:27:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct IndirectEvil<'a, 'b: 'a>(Option<&'a &'b ()>);
|
|
|
|
|
2015-10-02 20:52:18 +00:00
|
|
|
impl<'a, 'b> Foo<'a, 'b, ()> for IndirectEvil<'a, 'b> {
|
2015-09-25 22:27:39 +00:00
|
|
|
fn make_me() -> Self { IndirectEvil(None) }
|
2015-10-02 20:52:18 +00:00
|
|
|
fn static_evil(u: &'b u32) -> &'a u32 {
|
2022-04-02 02:12:17 +00:00
|
|
|
let me = Self::make_me();
|
2022-04-01 17:13:25 +00:00
|
|
|
//~^ ERROR lifetime may not live long enough
|
2015-09-25 22:27:39 +00:00
|
|
|
loop {} // (`me` could be used for the lifetime transmute).
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-02 20:52:18 +00:00
|
|
|
impl<'a, 'b> Evil<'a, 'b> {
|
|
|
|
fn inherent_evil(u: &'b u32) -> &'a u32 {
|
2022-04-02 02:12:17 +00:00
|
|
|
u
|
2022-04-01 17:13:25 +00:00
|
|
|
//~^ ERROR lifetime may not live long enough
|
2015-10-02 20:52:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// while static methods don't get to *assume* this, we still
|
|
|
|
// *check* that they hold.
|
|
|
|
|
|
|
|
fn evil<'a, 'b>(b: &'b u32) -> &'a u32 {
|
2022-04-02 02:12:17 +00:00
|
|
|
<()>::static_evil(b)
|
2022-04-01 17:13:25 +00:00
|
|
|
//~^ ERROR lifetime may not live long enough
|
2015-10-02 20:52:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn indirect_evil<'a, 'b>(b: &'b u32) -> &'a u32 {
|
|
|
|
<IndirectEvil>::static_evil(b)
|
2022-04-01 17:13:25 +00:00
|
|
|
//~^ ERROR lifetime may not live long enough
|
2015-10-02 20:52:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn inherent_evil<'a, 'b>(b: &'b u32) -> &'a u32 {
|
2021-05-20 14:15:56 +00:00
|
|
|
<Evil>::inherent_evil(b)
|
2022-04-01 17:13:25 +00:00
|
|
|
//~^ ERROR lifetime may not live long enough
|
2015-10-02 20:52:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-25 22:27:39 +00:00
|
|
|
fn main() {}
|