mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			209 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			209 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// run-pass
 | 
						|
// ignore-emscripten no threads support
 | 
						|
 | 
						|
use std::thread;
 | 
						|
 | 
						|
pub fn main() {
 | 
						|
    thread::spawn(move|| child(10)).join().ok().unwrap();
 | 
						|
}
 | 
						|
 | 
						|
fn child(i: isize) { println!("{}", i); assert_eq!(i, 10); }
 |