rust/tests/ui/regions/regions-addr-of-interior-of...

24 lines
365 B
Rust

//@ run-pass
#![allow(dead_code)]
//@ pretty-expanded FIXME #23616
struct Point {
x: isize,
y: isize
}
struct Character {
pos: Box<Point>,
}
fn get_x(x: &Character) -> &isize {
// interesting case because the scope of this
// borrow of the unique pointer is in fact
// larger than the fn itself
return &x.pos.x;
}
pub fn main() {
}