Files
rust/tests/ui/drop/drop-once-on-move.rs

36 lines
728 B
Rust
Raw Normal View History

2025-07-01 19:28:38 +05:00
//! Check that types not implementing `Copy` are moved, not copied, during assignment
//! operations, and their `Drop` implementation is called exactly once when the
//! value goes out of scope.
//@ run-pass
#![allow(non_camel_case_types)]
2013-12-31 15:46:27 -08:00
use std::cell::Cell;
2015-01-28 08:34:18 -05:00
#[derive(Debug)]
2014-10-02 08:10:09 +03:00
struct r<'a> {
i: &'a Cell<isize>,
}
2014-10-02 08:10:09 +03:00
impl<'a> Drop for r<'a> {
2013-09-16 21:18:07 -04:00
fn drop(&mut self) {
2013-12-31 15:46:27 -08:00
self.i.set(self.i.get() + 1);
}
}
fn r(i: &Cell<isize>) -> r<'_> {
2025-07-01 19:28:38 +05:00
r { i }
2012-09-05 15:58:43 -07:00
}
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 02:44:18 -08:00
let (c, _d) = b;
println!("{:?}", c);
}
2013-12-31 15:46:27 -08:00
assert_eq!(i.get(), 1);
}