mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
17 lines
291 B
Rust
17 lines
291 B
Rust
struct Point {
|
|
x: isize,
|
|
y: isize,
|
|
}
|
|
|
|
fn x_coord<'r>(p: &'r Point) -> &'r isize {
|
|
return &p.x;
|
|
}
|
|
|
|
fn foo<'a>(p: Box<Point>) -> &'a isize {
|
|
let xc = x_coord(&*p);
|
|
assert_eq!(*xc, 3);
|
|
return xc; //~ ERROR cannot return value referencing local data `*p`
|
|
}
|
|
|
|
fn main() {}
|