blob: 7ff37d7a5251e2a98022fc2da70c0ed6e8efe567 [file] [log] [blame]
// Various tests related to testing how region inference works
// with respect to the object receivers.
//@ check-pass
#![allow(warnings)]
trait Foo {
fn borrowed<'a>(&'a self) -> &'a ();
}
// Here the receiver and return value all have the same lifetime,
// so no error results.
fn borrowed_receiver_same_lifetime<'a>(x: &'a dyn Foo) -> &'a () {
x.borrowed()
}
fn main() {}