2013-10-05 14:01:58 -05:00
|
|
|
// Copyright 2013 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.
|
|
|
|
|
2014-12-14 02:05:32 -06:00
|
|
|
// error-pattern:thread 'owned name' panicked at 'test'
|
2013-10-05 14:01:58 -05:00
|
|
|
|
2014-12-14 02:05:32 -06:00
|
|
|
use std::thread::Builder;
|
2013-11-21 18:55:40 -06:00
|
|
|
|
2013-10-05 14:01:58 -05:00
|
|
|
fn main() {
|
2015-01-05 23:59:45 -06:00
|
|
|
let r: Result<int,_> = Builder::new().name("owned name".to_string()).scoped(move|| {
|
2014-10-09 14:17:22 -05:00
|
|
|
panic!("test");
|
2014-06-27 14:30:25 -05:00
|
|
|
1i
|
2014-12-14 02:05:32 -06:00
|
|
|
}).join();
|
2014-06-25 20:18:13 -05:00
|
|
|
assert!(r.is_ok());
|
2013-10-05 14:01:58 -05:00
|
|
|
}
|