rust/tests/ui/out-pointer-aliasing.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
305 B
Rust
Raw Normal View History

//@ run-pass
2015-03-30 13:38:27 +00:00
#[derive(Copy, Clone)]
pub struct Foo {
f1: isize,
_f2: isize,
}
#[inline(never)]
pub fn foo(f: &mut Foo) -> Foo {
let ret = *f;
f.f1 = 0;
ret
}
pub fn main() {
let mut f = Foo {
f1: 8,
_f2: 9,
};
f = foo(&mut f);
assert_eq!(f.f1, 8);
}