2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2018-09-25 16:51:35 -05:00
|
|
|
#![allow(unused_must_use)]
|
2018-08-31 08:02:01 -05:00
|
|
|
#![allow(non_upper_case_globals)]
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
2017-10-17 20:45:42 -05:00
|
|
|
// ignore-emscripten no threads
|
2015-03-22 15:13:15 -05:00
|
|
|
|
2014-12-14 02:05:32 -06:00
|
|
|
use std::thread::Builder;
|
2014-02-07 13:08:32 -06:00
|
|
|
|
2015-03-25 19:06:52 -05:00
|
|
|
static generations: usize = 1024+256+128+49;
|
2012-11-15 14:30:04 -06:00
|
|
|
|
2019-05-28 13:47:21 -05:00
|
|
|
fn spawn(mut f: Box<dyn FnMut() + 'static + Send>) {
|
2015-04-01 10:12:30 -05:00
|
|
|
Builder::new().stack_size(32 * 1024).spawn(move|| f());
|
2014-02-21 17:41:51 -06:00
|
|
|
}
|
|
|
|
|
2019-05-28 13:47:21 -05:00
|
|
|
fn child_no(x: usize) -> Box<dyn FnMut() + 'static + Send> {
|
2015-04-01 10:12:30 -05:00
|
|
|
Box::new(move|| {
|
2012-11-15 14:30:04 -06:00
|
|
|
if x < generations {
|
2014-02-21 17:41:51 -06:00
|
|
|
spawn(child_no(x+1));
|
2012-11-15 14:30:04 -06:00
|
|
|
}
|
2014-11-26 07:12:18 -06:00
|
|
|
})
|
2012-11-15 14:30:04 -06:00
|
|
|
}
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2014-02-21 17:41:51 -06:00
|
|
|
spawn(child_no(0));
|
2012-11-15 14:30:04 -06:00
|
|
|
}
|