rust/tests/rustdoc-js/generics-nested.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
548 B
JavaScript
Raw Normal View History

// exact-check
const EXPECTED = [
{
2023-06-09 22:49:38 +08:00
'query': '-> Out<First<Second>>',
'others': [
{ 'path': 'generics_nested', 'name': 'alef' },
],
},
{
2023-06-09 22:49:38 +08:00
'query': '-> Out<Second<First>>',
'others': [],
},
{
2023-06-09 22:49:38 +08:00
'query': '-> Out<First, Second>',
'others': [
{ 'path': 'generics_nested', 'name': 'bet' },
],
},
{
2023-06-09 22:49:38 +08:00
'query': '-> Out<Second, First>',
'others': [
{ 'path': 'generics_nested', 'name': 'bet' },
],
},
];