blob: bd3d4a1acdc4e5d755e2999eb54b6deac99d67ee [file] [log] [blame] [edit]
//@ 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() {
}