2015-09-25 22:27:39 +00:00
|
|
|
// A method's receiver must be well-formed, even if it has late-bound regions.
|
|
|
|
// Because of this, a method's substs being well-formed does not imply that
|
|
|
|
// the method's implied bounds are met.
|
2018-04-12 10:25:29 +00:00
|
|
|
|
2015-09-25 22:27:39 +00:00
|
|
|
struct Foo<'b>(Option<&'b ()>);
|
|
|
|
|
|
|
|
trait Bar<'b> {
|
|
|
|
fn xmute<'a>(&'a self, u: &'b u32) -> &'a u32;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'b> Bar<'b> for Foo<'b> {
|
|
|
|
fn xmute<'a>(&'a self, u: &'b u32) -> &'a u32 { u }
|
|
|
|
}
|
|
|
|
|
2018-04-12 10:25:29 +00:00
|
|
|
fn main() {
|
2015-09-25 22:27:39 +00:00
|
|
|
let f = Foo(None);
|
|
|
|
let f2 = f;
|
|
|
|
let dangling = {
|
|
|
|
let pointer = Box::new(42);
|
2017-11-20 12:13:27 +00:00
|
|
|
f2.xmute(&pointer)
|
2017-12-14 01:27:23 +00:00
|
|
|
};
|
|
|
|
//~^^ ERROR `pointer` does not live long enough
|
2015-09-25 22:27:39 +00:00
|
|
|
println!("{}", dangling);
|
|
|
|
}
|