mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-07 22:11:30 +00:00
23 lines
431 B
JavaScript
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' },
|
|
],
|
|
},
|
|
];
|