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

47 lines
1.0 KiB
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-win32
extern mod std;
2013-01-29 01:54:39 -06:00
use core::pipes::*;
2012-08-15 20:46:55 -05:00
struct complainer {
2013-01-29 01:54:39 -06:00
c: SharedChan<bool>,
}
impl Drop for complainer {
fn finalize(&self) {
error!("About to send!");
2013-01-29 01:54:39 -06:00
self.c.send(true);
error!("Sent!");
}
}
2013-01-29 01:54:39 -06:00
fn complainer(c: SharedChan<bool>) -> complainer {
2012-09-05 17:58:43 -05:00
error!("Hello!");
complainer {
c: c
}
}
2013-01-29 01:54:39 -06:00
fn f(c: SharedChan<bool>) {
2013-02-15 04:44:18 -06:00
let _c = complainer(c);
fail!();
}
pub fn main() {
2013-01-29 01:54:39 -06:00
let (p, c) = stream();
let c = SharedChan(c);
task::spawn_unlinked(|| f(c.clone()) );
2012-08-22 19:24:52 -05:00
error!("hiiiiiiiii");
2013-01-29 01:54:39 -06:00
assert p.recv();
}