2012-12-10 19:32:48 -06: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.
|
|
|
|
|
2011-09-09 15:25:06 -05:00
|
|
|
// xfail-win32
|
2012-09-11 19:46:20 -05:00
|
|
|
extern mod std;
|
2011-09-07 19:01:24 -05:00
|
|
|
|
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>,
|
2012-11-14 00:22:37 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl complainer : Drop {
|
2012-11-28 17:42:16 -06:00
|
|
|
fn finalize(&self) {
|
2012-11-14 00:22:37 -06:00
|
|
|
error!("About to send!");
|
2013-01-29 01:54:39 -06:00
|
|
|
self.c.send(true);
|
2012-11-14 00:22:37 -06:00
|
|
|
error!("Sent!");
|
|
|
|
}
|
2011-09-07 19:01:24 -05:00
|
|
|
}
|
|
|
|
|
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>) {
|
2012-10-23 13:11:23 -05:00
|
|
|
let _c = move complainer(c);
|
2013-02-11 21:26:38 -06:00
|
|
|
fail!();
|
2011-09-07 19:01:24 -05:00
|
|
|
}
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
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();
|
2012-07-23 14:53:18 -05:00
|
|
|
}
|