mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			508 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			508 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // exact-check
 | |
| 
 | |
| // Test case for https://github.com/rust-lang/rust/issues/139665
 | |
| // make sure that std::io::Result and std::thread::Result get unboxed
 | |
| 
 | |
| const EXPECTED = [
 | |
|     {
 | |
|         query: "File -> Metadata",
 | |
|         others: [
 | |
|             { path: "std::fs::File", name: "metadata" },
 | |
|             { path: "std::fs::File", name: "metadata_at" },
 | |
|         ]
 | |
|     },
 | |
|     {
 | |
|         query: "JoinHandle<T> -> T",
 | |
|         others: [
 | |
|             { path: "std::thread::JoinHandle", name: "join" },
 | |
|         ]
 | |
|     },
 | |
| ];
 | 
