rust/src/test/run-pass/resource-generic.rs

39 lines
932 B
Rust
Raw Normal View History

// 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.
// xfail-fast
#[legacy_modes];
struct Arg<T> {val: T, fin: extern fn(T)}
struct finish<T> {
arg: Arg<T>
}
impl<T:Copy> Drop for finish<T> {
fn finalize(&self) {
2012-12-01 15:25:17 -08:00
(self.arg.fin)(self.arg.val);
}
}
fn finish<T:Copy>(arg: Arg<T>) -> finish<T> {
2012-09-05 15:58:43 -07:00
finish {
arg: arg
}
}
pub fn main() {
2012-03-26 18:35:18 -07:00
let box = @mut 10;
fn dec_box(&&i: @mut int) { *i -= 1; }
2013-02-15 02:44:18 -08:00
{ let _i = finish(Arg{val: box, fin: dec_box}); }
2011-07-27 14:19:39 +02:00
assert (*box == 9);
}