mirror of https://github.com/rust-lang/rust.git
33 lines
599 B
JavaScript
33 lines
599 B
JavaScript
// exact-check
|
|
|
|
const EXPECTED = [
|
|
{
|
|
'query': 'i32',
|
|
'in_args': [
|
|
{ 'path': 'primitive', 'name': 'foo' },
|
|
],
|
|
},
|
|
{
|
|
'query': 'str',
|
|
'returned': [
|
|
{ 'path': 'primitive', 'name': 'foo' },
|
|
],
|
|
},
|
|
{
|
|
'query': 'primitive:str',
|
|
'returned': [
|
|
{ 'path': 'primitive', 'name': 'foo' },
|
|
],
|
|
},
|
|
{
|
|
'query': 'struct:str',
|
|
'returned': [],
|
|
},
|
|
{
|
|
'query': 'TotoIsSomewhere',
|
|
'others': [],
|
|
'in_args': [],
|
|
'returned': [],
|
|
},
|
|
];
|