mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
24 lines
365 B
Rust
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() {
|
|
}
|