rustc/tests/rustdoc-js/reexport-dedup.js
2024-06-24 14:48:22 +02:00

23 lines
431 B
JavaScript

// exact-check
const EXPECTED = [
{
'query': 'Subscriber',
'others': [
{ 'path': 'foo', 'name': 'Subscriber' },
],
},
{
'query': 'fmt Subscriber',
'others': [
{ 'path': 'foo::fmt', 'name': 'Subscriber' },
],
},
{
'query': 'AnotherOne',
'others': [
{ 'path': 'foo', 'name': 'AnotherOne' },
],
},
];