blob: 0b9415dd3e48056af7e4896cc297f6424ad20017 [file] [log] [blame] [edit]
// exact-check
const EXPECTED = [
{
'query': 'Subscriber',
'others': [
{ 'path': 'reexport::fmt', 'name': 'Subscriber' },
{ 'path': 'reexport', 'name': 'FmtSubscriber' },
],
},
{
'query': 'AnotherOne',
'others': [
{ 'path': 'reexport', 'name': 'AnotherOne' },
],
},
{
'query': 'fn:Equivalent::equivalent',
'others': [
// These results must never contain `reexport::equivalent::NotEquivalent`,
// since that path does not exist.
{ 'path': 'equivalent::Equivalent', 'name': 'equivalent' },
{ 'path': 'reexport::NotEquivalent', 'name': 'equivalent' },
],
},
];
OSZAR »