mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-28 12:08:13 +00:00
15 lines
231 B
Rust
15 lines
231 B
Rust
// compile-flags: -O
|
|
// run-pass
|
|
|
|
struct Foo {
|
|
x: i32,
|
|
}
|
|
|
|
pub fn main() {
|
|
let mut foo = Foo { x: 42 };
|
|
let x = &mut foo.x;
|
|
*x = 13;
|
|
let y = foo;
|
|
assert_eq!(y.x, 13); // used to print 42 due to mir-opt bug
|
|
}
|