mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +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"}
|
||
|
],
|
||
|
},
|
||
|
];
|