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.
|
|
|
|
|
2016-02-11 05:34:41 -06:00
|
|
|
// ignore-emscripten no threads support
|
2015-03-22 15:13:15 -05:00
|
|
|
|
2015-01-07 19:25:56 -06:00
|
|
|
#![allow(unknown_features)]
|
|
|
|
#![feature(box_syntax)]
|
|
|
|
|
2015-02-17 17:10:25 -06:00
|
|
|
use std::thread;
|
2013-05-24 21:35:29 -05:00
|
|
|
|
2012-01-04 23:14:53 -06:00
|
|
|
fn f() {
|
2015-02-17 14:41:32 -06:00
|
|
|
let _a: Box<_> = box 0;
|
2014-10-09 14:17:22 -05:00
|
|
|
panic!();
|
2011-09-23 16:58:06 -05:00
|
|
|
}
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2015-02-23 11:53:03 -06:00
|
|
|
let t = thread::spawn(f);
|
|
|
|
drop(t.join());
|
2012-07-23 14:53:18 -05:00
|
|
|
}
|