blob: b3184dde0d0c9595625960ac227397eff321b280 [file] [log] [blame] [edit]
// 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' },
],
},
{
// can't put generics out of order
'query': '-> Out<Second, First>',
'others': [],
},
];