mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
27 lines
548 B
JavaScript
27 lines
548 B
JavaScript
// exact-check
|
|
|
|
const EXPECTED = [
|
|
{
|
|
'query': '-> Out<First<Second>>',
|
|
'others': [
|
|
{ 'path': 'generics_nested', 'name': 'alef' },
|
|
],
|
|
},
|
|
{
|
|
'query': '-> Out<Second<First>>',
|
|
'others': [],
|
|
},
|
|
{
|
|
'query': '-> Out<First, Second>',
|
|
'others': [
|
|
{ 'path': 'generics_nested', 'name': 'bet' },
|
|
],
|
|
},
|
|
{
|
|
'query': '-> Out<Second, First>',
|
|
'others': [
|
|
{ 'path': 'generics_nested', 'name': 'bet' },
|
|
],
|
|
},
|
|
];
|