2023-09-22 19:27:06 -05:00
|
|
|
// exact-check
|
|
|
|
|
|
|
|
const EXPECTED = [
|
|
|
|
{
|
|
|
|
'query': 'mytrait, mytrait2 -> T',
|
|
|
|
'correction': null,
|
|
|
|
'others': [
|
|
|
|
{ 'path': 'assoc_type_backtrack::MyTrait', 'name': 'fold' },
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'query': 'mytrait<U>, mytrait2 -> T',
|
|
|
|
'correction': null,
|
|
|
|
'others': [
|
|
|
|
{ 'path': 'assoc_type_backtrack::MyTrait', 'name': 'fold' },
|
2024-09-24 20:18:01 -05:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'query': 'cloned<mytrait>, mytrait2 -> T',
|
|
|
|
'correction': null,
|
|
|
|
'others': [
|
|
|
|
{ 'path': 'assoc_type_backtrack::Cloned', 'name': 'fold' },
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'query': 'cloned<mytrait<U>>, mytrait2 -> T',
|
|
|
|
'correction': null,
|
|
|
|
'others': [
|
2023-09-22 19:27:06 -05:00
|
|
|
{ 'path': 'assoc_type_backtrack::Cloned', 'name': 'fold' },
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'query': 'mytrait<Item=U>, mytrait2 -> T',
|
|
|
|
'correction': null,
|
|
|
|
'others': [
|
|
|
|
{ 'path': 'assoc_type_backtrack::MyTrait', 'name': 'fold' },
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'query': 'mytrait<T>, mytrait2 -> T',
|
|
|
|
'correction': null,
|
|
|
|
'others': [],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'query': 'mytrait<Item=T>, mytrait2 -> T',
|
|
|
|
'correction': null,
|
|
|
|
'others': [],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'query': 'mytrait<T> -> Option<T>',
|
|
|
|
'correction': null,
|
|
|
|
'others': [
|
|
|
|
{ 'path': 'assoc_type_backtrack::MyTrait', 'name': 'next' },
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'query': 'mytrait<Item=T> -> Option<T>',
|
|
|
|
'correction': null,
|
|
|
|
'others': [
|
|
|
|
{ 'path': 'assoc_type_backtrack::MyTrait', 'name': 'next' },
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
2024-09-24 20:18:01 -05:00
|
|
|
'query': 'cloned<mytrait<U>> -> Option<T>',
|
2023-09-22 19:27:06 -05:00
|
|
|
'correction': null,
|
|
|
|
'others': [
|
|
|
|
{ 'path': 'assoc_type_backtrack::Cloned', 'name': 'next' },
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
2024-09-24 20:18:01 -05:00
|
|
|
'query': 'cloned<mytrait<Item=U>> -> Option<T>',
|
2023-09-22 19:27:06 -05:00
|
|
|
'correction': null,
|
|
|
|
'others': [
|
|
|
|
{ 'path': 'assoc_type_backtrack::Cloned', 'name': 'next' },
|
|
|
|
],
|
|
|
|
},
|
|
|
|
// The first two define the base case.
|
|
|
|
{
|
|
|
|
'query': 'myintofuture<fut=myfuture<t>> -> myfuture<t>',
|
|
|
|
'correction': null,
|
|
|
|
'others': [
|
|
|
|
{ 'path': 'assoc_type_backtrack::MyIntoFuture', 'name': 'into_future' },
|
|
|
|
{ 'path': 'assoc_type_backtrack::MyIntoFuture', 'name': 'into_future_2' },
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'query': 'myintofuture<fut=myfuture<t>>, myintofuture<fut=myfuture<t>> -> myfuture<t>',
|
|
|
|
'correction': null,
|
|
|
|
'others': [
|
|
|
|
{ 'path': 'assoc_type_backtrack::MyIntoFuture', 'name': 'into_future_2' },
|
|
|
|
],
|
|
|
|
},
|
|
|
|
// Unboxings of the one-argument case.
|
|
|
|
{
|
|
|
|
'query': 'myfuture<t> -> myfuture<t>',
|
|
|
|
'correction': null,
|
|
|
|
'others': [
|
|
|
|
{ 'path': 'assoc_type_backtrack::MyIntoFuture', 'name': 'into_future' },
|
|
|
|
{ 'path': 'assoc_type_backtrack::MyIntoFuture', 'name': 'into_future_2' },
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
2024-09-24 20:18:01 -05:00
|
|
|
'query': 'myintofuture<t, myfuture<t>> -> myfuture<t>',
|
2023-09-22 19:27:06 -05:00
|
|
|
'correction': null,
|
|
|
|
'others': [
|
|
|
|
{ 'path': 'assoc_type_backtrack::MyIntoFuture', 'name': 'into_future' },
|
|
|
|
{ 'path': 'assoc_type_backtrack::MyIntoFuture', 'name': 'into_future_2' },
|
|
|
|
],
|
|
|
|
},
|
2024-09-24 20:18:01 -05:00
|
|
|
// Unboxings of the one-argument case.
|
2023-09-22 19:27:06 -05:00
|
|
|
{
|
|
|
|
'query': 'myintofuture<fut=t> -> myfuture<t>',
|
|
|
|
'correction': null,
|
2024-09-24 20:18:01 -05:00
|
|
|
'others': [
|
|
|
|
{ 'path': 'assoc_type_backtrack::MyIntoFuture', 'name': 'into_future' },
|
|
|
|
{ 'path': 'assoc_type_backtrack::MyIntoFuture', 'name': 'into_future_2' },
|
|
|
|
],
|
2023-09-22 19:27:06 -05:00
|
|
|
},
|
|
|
|
// Unboxings of the two-argument case.
|
|
|
|
{
|
|
|
|
'query': 'myintofuture<fut=t>, myintofuture<fut=t> -> t',
|
|
|
|
'correction': null,
|
|
|
|
'others': [
|
|
|
|
{ 'path': 'assoc_type_backtrack::MyIntoFuture', 'name': 'into_future_2' },
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'query': 'myintofuture<fut=myfuture>, myintofuture<fut=myfuture> -> myfuture',
|
|
|
|
'correction': null,
|
|
|
|
'others': [
|
|
|
|
{ 'path': 'assoc_type_backtrack::MyIntoFuture', 'name': 'into_future_2' },
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
2024-09-24 20:18:01 -05:00
|
|
|
'query': 'myintofuture<t, myfuture>, myintofuture<t, myfuture> -> myfuture',
|
2023-09-22 19:27:06 -05:00
|
|
|
'correction': null,
|
|
|
|
'others': [
|
|
|
|
{ 'path': 'assoc_type_backtrack::MyIntoFuture', 'name': 'into_future_2' },
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'query': 'myfuture<t>, myfuture<t> -> myfuture<t>',
|
|
|
|
'correction': null,
|
|
|
|
'others': [
|
|
|
|
{ 'path': 'assoc_type_backtrack::MyIntoFuture', 'name': 'into_future_2' },
|
|
|
|
],
|
|
|
|
},
|
2024-09-24 20:18:01 -05:00
|
|
|
// If you unbox one of the myfutures, you don't need to unbox all of them.
|
2023-09-22 19:27:06 -05:00
|
|
|
{
|
|
|
|
'query': 'myintofuture<fut=t>, myintofuture<fut=myfuture<t>> -> myfuture<t>',
|
|
|
|
'correction': null,
|
2024-09-24 20:18:01 -05:00
|
|
|
'others': [
|
|
|
|
{ 'path': 'assoc_type_backtrack::MyIntoFuture', 'name': 'into_future_2' },
|
|
|
|
],
|
2023-09-22 19:27:06 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
'query': 'myintofuture<fut=myfuture<t>>, myintofuture<fut=t> -> myfuture<t>',
|
|
|
|
'correction': null,
|
2024-09-24 20:18:01 -05:00
|
|
|
'others': [
|
|
|
|
{ 'path': 'assoc_type_backtrack::MyIntoFuture', 'name': 'into_future_2' },
|
|
|
|
],
|
2023-09-22 19:27:06 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
'query': 'myintofuture<fut=myfuture<t>>, myintofuture<fut=myfuture<t>> -> t',
|
|
|
|
'correction': null,
|
2024-09-24 20:18:01 -05:00
|
|
|
'others': [
|
|
|
|
{ 'path': 'assoc_type_backtrack::MyIntoFuture', 'name': 'into_future_2' },
|
|
|
|
],
|
2023-09-22 19:27:06 -05:00
|
|
|
},
|
2024-09-24 20:18:01 -05:00
|
|
|
// different generics must match up
|
2023-09-22 19:27:06 -05:00
|
|
|
{
|
|
|
|
'query': 'myintofuture<fut=myfuture<u>>, myintofuture<fut=myfuture<t>> -> myfuture<t>',
|
|
|
|
'correction': null,
|
|
|
|
'others': [],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'query': 'myintofuture<output=t> -> myfuture<tt>',
|
|
|
|
'correction': null,
|
|
|
|
'others': [],
|
|
|
|
},
|
|
|
|
];
|