rust/tests/ui/resource-assign-is-not-copy.rs

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

34 lines
543 B
Rust
Raw Normal View History

//@ run-pass
#![allow(non_camel_case_types)]
2014-01-01 07:46:27 +08:00
use std::cell::Cell;
2015-01-28 21:34:18 +08:00
#[derive(Debug)]
2014-10-02 13:10:09 +08:00
struct r<'a> {
i: &'a Cell<isize>,
}
2014-10-02 13:10:09 +08:00
impl<'a> Drop for r<'a> {
2013-09-17 09:18:07 +08:00
fn drop(&mut self) {
2014-01-01 07:46:27 +08:00
self.i.set(self.i.get() + 1);
}
}
fn r(i: &Cell<isize>) -> r {
2012-09-06 06:58:43 +08:00
r {
i: i
}
}
pub fn main() {
2015-01-26 05:05:03 +08:00
let i = &Cell::new(0);
// Even though these look like copies, they are guaranteed not to be
{
let a = r(i);
2015-01-26 05:05:03 +08:00
let b = (a, 10);
2013-02-15 18:44:18 +08:00
let (c, _d) = b;
println!("{:?}", c);
}
2014-01-01 07:46:27 +08:00
assert_eq!(i.get(), 1);
}