aa48654740
No longer does anything.
39 lines
832 B
Rust
39 lines
832 B
Rust
// 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.
|
|
|
|
#![feature(unsafe_destructor)]
|
|
|
|
use std::task;
|
|
use std::gc::{Gc, GC};
|
|
|
|
struct complainer {
|
|
c: Gc<int>,
|
|
}
|
|
|
|
#[unsafe_destructor]
|
|
impl Drop for complainer {
|
|
fn drop(&mut self) {}
|
|
}
|
|
|
|
fn complainer(c: Gc<int>) -> complainer {
|
|
complainer {
|
|
c: c
|
|
}
|
|
}
|
|
|
|
fn f() {
|
|
let _c = complainer(box(GC) 0);
|
|
fail!();
|
|
}
|
|
|
|
pub fn main() {
|
|
task::spawn(f);
|
|
}
|