rust/src/test/ui/resource-assign-is-not-copy.rs

34 lines
542 B
Rust
Raw Permalink Normal View History

// run-pass
#![allow(non_camel_case_types)]
2014-01-01 00:46:27 +01:00
use std::cell::Cell;
2015-01-28 14:34:18 +01:00
#[derive(Debug)]
2014-10-02 07:10:09 +02:00
struct r<'a> {
i: &'a Cell<isize>,
}
2014-10-02 07:10:09 +02:00
impl<'a> Drop for r<'a> {
2013-09-17 03:18:07 +02:00
fn drop(&mut self) {
2014-01-01 00:46:27 +01:00
self.i.set(self.i.get() + 1);
}
}
fn r(i: &Cell<isize>) -> r {
2012-09-06 00:58:43 +02:00
r {
i: i
}
}
pub fn main() {
2015-01-25 22:05:03 +01: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 22:05:03 +01:00
let b = (a, 10);
2013-02-15 11:44:18 +01:00
let (c, _d) = b;
println!("{:?}", c);
}
2014-01-01 00:46:27 +01:00
assert_eq!(i.get(), 1);
}