2012-12-10 17:32:48 -08:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
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> {
|
2015-03-25 17:06:52 -07:00
|
|
|
i: &'a Cell<isize>,
|
2012-11-14 01:22:37 -05:00
|
|
|
}
|
|
|
|
|
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);
|
2012-11-14 01:22:37 -05:00
|
|
|
}
|
2012-05-15 20:33:59 -07:00
|
|
|
}
|
2011-09-27 22:40:15 -07:00
|
|
|
|
2015-03-25 17:06:52 -07:00
|
|
|
fn r(i: &Cell<isize>) -> r {
|
2012-09-05 15:58:43 -07:00
|
|
|
r {
|
|
|
|
i: i
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-01 19:43:17 -08:00
|
|
|
pub fn main() {
|
2015-01-25 22:05:03 +01:00
|
|
|
let i = &Cell::new(0);
|
2011-11-18 16:15:46 +01:00
|
|
|
// 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;
|
2014-12-20 00:09:35 -08:00
|
|
|
println!("{:?}", c);
|
2011-11-18 16:15:46 +01:00
|
|
|
}
|
2013-12-31 15:46:27 -08:00
|
|
|
assert_eq!(i.get(), 1);
|
2011-11-18 16:15:46 +01:00
|
|
|
}
|