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
542 B
Rust
Raw Normal View History

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