mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			475 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			475 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // exact-check
 | |
| 
 | |
| const EXPECTED = [
 | |
|     {
 | |
|         'query': 'outside<U>, outside<V> -> outside<W>',
 | |
|         'others': [],
 | |
|     },
 | |
|     {
 | |
|         'query': 'outside<V>, outside<U> -> outside<W>',
 | |
|         'others': [],
 | |
|     },
 | |
|     {
 | |
|         'query': 'outside<U>, outside<U> -> outside<W>',
 | |
|         'others': [],
 | |
|     },
 | |
|     {
 | |
|         'query': 'outside<U>, outside<U> -> outside<U>',
 | |
|         'others': [
 | |
|             {"path": "generics2", "name": "should_match_3"}
 | |
|         ],
 | |
|     },
 | |
| ];
 | 
