mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
15 lines
412 B
Rust
15 lines
412 B
Rust
// 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<dyn Foo>) -> &'static () {
|
|
x.borrowed() //~ ERROR cannot return value referencing local data `*x`
|
|
}
|
|
|
|
fn main() {}
|