mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			651 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			651 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // ignore-order
 | |
| 
 | |
| const FILTER_CRATE = "std";
 | |
| 
 | |
| const EXPECTED = [
 | |
|     {
 | |
|         'query': 'vec::intoiter<T> -> [T]',
 | |
|         'others': [
 | |
|             { 'path': 'std::vec::IntoIter', 'name': 'as_slice' },
 | |
|             { 'path': 'std::vec::IntoIter', 'name': 'as_mut_slice' },
 | |
|             { 'path': 'std::vec::IntoIter', 'name': 'next_chunk' },
 | |
|         ],
 | |
|     },
 | |
|     {
 | |
|         'query': 'vec::intoiter<T> -> []',
 | |
|         'others': [
 | |
|             { 'path': 'std::vec::IntoIter', 'name': 'as_slice' },
 | |
|             { 'path': 'std::vec::IntoIter', 'name': 'as_mut_slice' },
 | |
|             { 'path': 'std::vec::IntoIter', 'name': 'next_chunk' },
 | |
|         ],
 | |
|     },
 | |
| ];
 | 
