mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-26 22:06:53 +00:00
21 lines
378 B
JavaScript
21 lines
378 B
JavaScript
// exact-check
|
|
|
|
const QUERY = [
|
|
'P',
|
|
'P, P',
|
|
];
|
|
|
|
const EXPECTED = [
|
|
{
|
|
'in_args': [
|
|
{ 'path': 'search_bag_semantics', 'name': 'alacazam' },
|
|
{ 'path': 'search_bag_semantics', 'name': 'abracadabra' },
|
|
],
|
|
},
|
|
{
|
|
'others': [
|
|
{ 'path': 'search_bag_semantics', 'name': 'abracadabra' },
|
|
],
|
|
},
|
|
];
|