blob: bd68aebbeeb0956f99c8bebff8aa6725dcce638d [file] [log] [blame]
// Various tests related to testing how region inference works
// with respect to the object receivers.
trait Foo {
fn borrowed<'a>(&'a self) -> &'a ();
}
// Here, the object is bounded by an anonymous lifetime and returned
// as `&'static`, so you get an error.
fn owned_receiver(x: Box<Foo>) -> &'static () {
x.borrowed() //~ ERROR cannot return value referencing local data `*x`
}
fn main() {}