mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-26 22:06:53 +00:00
36 lines
554 B
JavaScript
36 lines
554 B
JavaScript
// exact-check
|
|
|
|
const QUERY = [
|
|
"i32",
|
|
"str",
|
|
"primitive:str",
|
|
"struct:str",
|
|
"TotoIsSomewhere",
|
|
];
|
|
|
|
const EXPECTED = [
|
|
{
|
|
'in_args': [
|
|
{ 'path': 'primitive', 'name': 'foo' },
|
|
],
|
|
},
|
|
{
|
|
'returned': [
|
|
{ 'path': 'primitive', 'name': 'foo' },
|
|
],
|
|
},
|
|
{
|
|
'returned': [
|
|
{ 'path': 'primitive', 'name': 'foo' },
|
|
],
|
|
},
|
|
{
|
|
'returned': [],
|
|
},
|
|
{
|
|
'others': [],
|
|
'in_args': [],
|
|
'returned': [],
|
|
},
|
|
];
|