2014-08-27 21:46:52 -04:00
|
|
|
// Various tests related to testing how region inference works
|
|
|
|
|
// with respect to the object receivers.
|
|
|
|
|
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ check-pass
|
2015-02-12 09:37:52 -05:00
|
|
|
#![allow(warnings)]
|
|
|
|
|
|
2014-08-27 21:46:52 -04:00
|
|
|
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 Foo) -> &'a () {
|
|
|
|
|
x.borrowed()
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-31 13:08:01 +01:00
|
|
|
|
|
|
|
|
fn main() {}
|