mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-01 19:41:15 +00:00
11 lines
188 B
Rust
11 lines
188 B
Rust
//@ run-pass
|
|
//@ needs-threads
|
|
|
|
use std::thread;
|
|
|
|
pub fn main() {
|
|
thread::spawn(move|| child(10)).join().ok().unwrap();
|
|
}
|
|
|
|
fn child(i: isize) { println!("{}", i); assert_eq!(i, 10); }
|