2023-01-04 21:02:10 -06:00
|
|
|
error[E0061]: enum variant takes 1 argument but 2 arguments were supplied
|
2021-11-09 17:20:26 -06:00
|
|
|
--> $DIR/args-instead-of-tuple.rs:7:36
|
|
|
|
|
|
|
|
|
LL | let _: Result<(i32, i8), ()> = Ok(1, 2);
|
Implementation for 65853
This attempts to bring better error messages to invalid method calls, by applying some heuristics to identify common mistakes.
The algorithm is inspired by Levenshtein distance and longest common sub-sequence. In essence, we treat the types of the function, and the types of the arguments you provided as two "words" and compute the edits to get from one to the other.
We then modify that algorithm to detect 4 cases:
- A function input is missing
- An extra argument was provided
- The type of an argument is straight up invalid
- Two arguments have been swapped
- A subset of the arguments have been shuffled
(We detect the last two as separate cases so that we can detect two swaps, instead of 4 parameters permuted.)
It helps to understand this argument by paying special attention to terminology: "inputs" refers to the inputs being *expected* by the function, and "arguments" refers to what has been provided at the call site.
The basic sketch of the algorithm is as follows:
- Construct a boolean grid, with a row for each argument, and a column for each input. The cell [i, j] is true if the i'th argument could satisfy the j'th input.
- If we find an argument that could satisfy no inputs, provided for an input that can't be satisfied by any other argument, we consider this an "invalid type".
- Extra arguments are those that can't satisfy any input, provided for an input that *could* be satisfied by another argument.
- Missing inputs are inputs that can't be satisfied by any argument, where the provided argument could satisfy another input
- Swapped / Permuted arguments are identified with a cycle detection algorithm.
As each issue is found, we remove the relevant inputs / arguments and check for more issues. If we find no issues, we match up any "valid" arguments, and start again.
Note that there's a lot of extra complexity:
- We try to stay efficient on the happy path, only computing the diagonal until we find a problem, and then filling in the rest of the matrix.
- Closure arguments are wrapped in a tuple and need to be unwrapped
- We need to resolve closure types after the rest, to allow the most specific type constraints
- We need to handle imported C functions that might be variadic in their inputs.
I tried to document a lot of this in comments in the code and keep the naming clear.
2022-01-21 22:50:54 -06:00
|
|
|
| ^^
|
2021-11-09 17:20:26 -06:00
|
|
|
|
|
2022-04-09 11:15:35 -05:00
|
|
|
note: tuple variant defined here
|
|
|
|
--> $SRC_DIR/core/src/result.rs:LL:COL
|
2022-06-28 02:12:49 -05:00
|
|
|
help: wrap these arguments in parentheses to construct a tuple
|
2021-11-09 17:20:26 -06:00
|
|
|
|
|
|
|
|
LL | let _: Result<(i32, i8), ()> = Ok((1, 2));
|
|
|
|
| + +
|
|
|
|
|
2023-01-04 21:02:10 -06:00
|
|
|
error[E0061]: enum variant takes 1 argument but 3 arguments were supplied
|
2021-11-09 17:20:26 -06:00
|
|
|
--> $DIR/args-instead-of-tuple.rs:9:46
|
|
|
|
|
|
|
|
|
LL | let _: Option<(i32, i8, &'static str)> = Some(1, 2, "hi");
|
Implementation for 65853
This attempts to bring better error messages to invalid method calls, by applying some heuristics to identify common mistakes.
The algorithm is inspired by Levenshtein distance and longest common sub-sequence. In essence, we treat the types of the function, and the types of the arguments you provided as two "words" and compute the edits to get from one to the other.
We then modify that algorithm to detect 4 cases:
- A function input is missing
- An extra argument was provided
- The type of an argument is straight up invalid
- Two arguments have been swapped
- A subset of the arguments have been shuffled
(We detect the last two as separate cases so that we can detect two swaps, instead of 4 parameters permuted.)
It helps to understand this argument by paying special attention to terminology: "inputs" refers to the inputs being *expected* by the function, and "arguments" refers to what has been provided at the call site.
The basic sketch of the algorithm is as follows:
- Construct a boolean grid, with a row for each argument, and a column for each input. The cell [i, j] is true if the i'th argument could satisfy the j'th input.
- If we find an argument that could satisfy no inputs, provided for an input that can't be satisfied by any other argument, we consider this an "invalid type".
- Extra arguments are those that can't satisfy any input, provided for an input that *could* be satisfied by another argument.
- Missing inputs are inputs that can't be satisfied by any argument, where the provided argument could satisfy another input
- Swapped / Permuted arguments are identified with a cycle detection algorithm.
As each issue is found, we remove the relevant inputs / arguments and check for more issues. If we find no issues, we match up any "valid" arguments, and start again.
Note that there's a lot of extra complexity:
- We try to stay efficient on the happy path, only computing the diagonal until we find a problem, and then filling in the rest of the matrix.
- Closure arguments are wrapped in a tuple and need to be unwrapped
- We need to resolve closure types after the rest, to allow the most specific type constraints
- We need to handle imported C functions that might be variadic in their inputs.
I tried to document a lot of this in comments in the code and keep the naming clear.
2022-01-21 22:50:54 -06:00
|
|
|
| ^^^^
|
2021-11-09 17:20:26 -06:00
|
|
|
|
|
2022-04-09 11:15:35 -05:00
|
|
|
note: tuple variant defined here
|
|
|
|
--> $SRC_DIR/core/src/option.rs:LL:COL
|
2022-06-28 02:12:49 -05:00
|
|
|
help: wrap these arguments in parentheses to construct a tuple
|
2021-11-09 17:20:26 -06:00
|
|
|
|
|
|
|
|
LL | let _: Option<(i32, i8, &'static str)> = Some((1, 2, "hi"));
|
|
|
|
| + +
|
|
|
|
|
|
|
|
error[E0061]: this enum variant takes 1 argument but 0 arguments were supplied
|
|
|
|
--> $DIR/args-instead-of-tuple.rs:11:25
|
|
|
|
|
|
|
|
|
LL | let _: Option<()> = Some();
|
2024-05-12 02:40:59 -05:00
|
|
|
| ^^^^-- argument #1 of type `()` is missing
|
2021-11-09 17:20:26 -06:00
|
|
|
|
|
2022-04-09 11:15:35 -05:00
|
|
|
note: tuple variant defined here
|
|
|
|
--> $SRC_DIR/core/src/option.rs:LL:COL
|
Implementation for 65853
This attempts to bring better error messages to invalid method calls, by applying some heuristics to identify common mistakes.
The algorithm is inspired by Levenshtein distance and longest common sub-sequence. In essence, we treat the types of the function, and the types of the arguments you provided as two "words" and compute the edits to get from one to the other.
We then modify that algorithm to detect 4 cases:
- A function input is missing
- An extra argument was provided
- The type of an argument is straight up invalid
- Two arguments have been swapped
- A subset of the arguments have been shuffled
(We detect the last two as separate cases so that we can detect two swaps, instead of 4 parameters permuted.)
It helps to understand this argument by paying special attention to terminology: "inputs" refers to the inputs being *expected* by the function, and "arguments" refers to what has been provided at the call site.
The basic sketch of the algorithm is as follows:
- Construct a boolean grid, with a row for each argument, and a column for each input. The cell [i, j] is true if the i'th argument could satisfy the j'th input.
- If we find an argument that could satisfy no inputs, provided for an input that can't be satisfied by any other argument, we consider this an "invalid type".
- Extra arguments are those that can't satisfy any input, provided for an input that *could* be satisfied by another argument.
- Missing inputs are inputs that can't be satisfied by any argument, where the provided argument could satisfy another input
- Swapped / Permuted arguments are identified with a cycle detection algorithm.
As each issue is found, we remove the relevant inputs / arguments and check for more issues. If we find no issues, we match up any "valid" arguments, and start again.
Note that there's a lot of extra complexity:
- We try to stay efficient on the happy path, only computing the diagonal until we find a problem, and then filling in the rest of the matrix.
- Closure arguments are wrapped in a tuple and need to be unwrapped
- We need to resolve closure types after the rest, to allow the most specific type constraints
- We need to handle imported C functions that might be variadic in their inputs.
I tried to document a lot of this in comments in the code and keep the naming clear.
2022-01-21 22:50:54 -06:00
|
|
|
help: provide the argument
|
2021-11-09 17:20:26 -06:00
|
|
|
|
|
|
|
|
LL | let _: Option<()> = Some(());
|
2022-09-01 21:17:44 -05:00
|
|
|
| ~~~~
|
2021-11-09 17:20:26 -06:00
|
|
|
|
2022-01-28 17:27:01 -06:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/args-instead-of-tuple.rs:14:34
|
|
|
|
|
|
|
|
|
LL | let _: Option<(i32,)> = Some(3);
|
2023-01-02 20:00:33 -06:00
|
|
|
| ---- ^ expected `(i32,)`, found integer
|
Implementation for 65853
This attempts to bring better error messages to invalid method calls, by applying some heuristics to identify common mistakes.
The algorithm is inspired by Levenshtein distance and longest common sub-sequence. In essence, we treat the types of the function, and the types of the arguments you provided as two "words" and compute the edits to get from one to the other.
We then modify that algorithm to detect 4 cases:
- A function input is missing
- An extra argument was provided
- The type of an argument is straight up invalid
- Two arguments have been swapped
- A subset of the arguments have been shuffled
(We detect the last two as separate cases so that we can detect two swaps, instead of 4 parameters permuted.)
It helps to understand this argument by paying special attention to terminology: "inputs" refers to the inputs being *expected* by the function, and "arguments" refers to what has been provided at the call site.
The basic sketch of the algorithm is as follows:
- Construct a boolean grid, with a row for each argument, and a column for each input. The cell [i, j] is true if the i'th argument could satisfy the j'th input.
- If we find an argument that could satisfy no inputs, provided for an input that can't be satisfied by any other argument, we consider this an "invalid type".
- Extra arguments are those that can't satisfy any input, provided for an input that *could* be satisfied by another argument.
- Missing inputs are inputs that can't be satisfied by any argument, where the provided argument could satisfy another input
- Swapped / Permuted arguments are identified with a cycle detection algorithm.
As each issue is found, we remove the relevant inputs / arguments and check for more issues. If we find no issues, we match up any "valid" arguments, and start again.
Note that there's a lot of extra complexity:
- We try to stay efficient on the happy path, only computing the diagonal until we find a problem, and then filling in the rest of the matrix.
- Closure arguments are wrapped in a tuple and need to be unwrapped
- We need to resolve closure types after the rest, to allow the most specific type constraints
- We need to handle imported C functions that might be variadic in their inputs.
I tried to document a lot of this in comments in the code and keep the naming clear.
2022-01-21 22:50:54 -06:00
|
|
|
| |
|
|
|
|
| arguments to this enum variant are incorrect
|
2022-01-28 17:27:01 -06:00
|
|
|
|
|
|
|
|
= note: expected tuple `(i32,)`
|
|
|
|
found type `{integer}`
|
2022-04-09 11:15:35 -05:00
|
|
|
note: tuple variant defined here
|
|
|
|
--> $SRC_DIR/core/src/option.rs:LL:COL
|
2022-01-28 17:27:01 -06:00
|
|
|
help: use a trailing comma to create a tuple with one element
|
|
|
|
|
|
|
|
|
LL | let _: Option<(i32,)> = Some((3,));
|
|
|
|
| + ++
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/args-instead-of-tuple.rs:17:34
|
|
|
|
|
|
|
|
|
LL | let _: Option<(i32,)> = Some((3));
|
2023-01-02 20:00:33 -06:00
|
|
|
| ---- ^^^ expected `(i32,)`, found integer
|
Implementation for 65853
This attempts to bring better error messages to invalid method calls, by applying some heuristics to identify common mistakes.
The algorithm is inspired by Levenshtein distance and longest common sub-sequence. In essence, we treat the types of the function, and the types of the arguments you provided as two "words" and compute the edits to get from one to the other.
We then modify that algorithm to detect 4 cases:
- A function input is missing
- An extra argument was provided
- The type of an argument is straight up invalid
- Two arguments have been swapped
- A subset of the arguments have been shuffled
(We detect the last two as separate cases so that we can detect two swaps, instead of 4 parameters permuted.)
It helps to understand this argument by paying special attention to terminology: "inputs" refers to the inputs being *expected* by the function, and "arguments" refers to what has been provided at the call site.
The basic sketch of the algorithm is as follows:
- Construct a boolean grid, with a row for each argument, and a column for each input. The cell [i, j] is true if the i'th argument could satisfy the j'th input.
- If we find an argument that could satisfy no inputs, provided for an input that can't be satisfied by any other argument, we consider this an "invalid type".
- Extra arguments are those that can't satisfy any input, provided for an input that *could* be satisfied by another argument.
- Missing inputs are inputs that can't be satisfied by any argument, where the provided argument could satisfy another input
- Swapped / Permuted arguments are identified with a cycle detection algorithm.
As each issue is found, we remove the relevant inputs / arguments and check for more issues. If we find no issues, we match up any "valid" arguments, and start again.
Note that there's a lot of extra complexity:
- We try to stay efficient on the happy path, only computing the diagonal until we find a problem, and then filling in the rest of the matrix.
- Closure arguments are wrapped in a tuple and need to be unwrapped
- We need to resolve closure types after the rest, to allow the most specific type constraints
- We need to handle imported C functions that might be variadic in their inputs.
I tried to document a lot of this in comments in the code and keep the naming clear.
2022-01-21 22:50:54 -06:00
|
|
|
| |
|
|
|
|
| arguments to this enum variant are incorrect
|
2022-01-28 17:27:01 -06:00
|
|
|
|
|
|
|
|
= note: expected tuple `(i32,)`
|
|
|
|
found type `{integer}`
|
2022-04-09 11:15:35 -05:00
|
|
|
note: tuple variant defined here
|
|
|
|
--> $SRC_DIR/core/src/option.rs:LL:COL
|
2022-01-28 17:27:01 -06:00
|
|
|
help: use a trailing comma to create a tuple with one element
|
|
|
|
|
|
|
|
|
LL | let _: Option<(i32,)> = Some((3,));
|
|
|
|
| +
|
|
|
|
|
2023-01-04 21:02:10 -06:00
|
|
|
error[E0061]: function takes 1 argument but 2 arguments were supplied
|
2022-01-28 17:27:01 -06:00
|
|
|
--> $DIR/args-instead-of-tuple.rs:20:5
|
2021-11-09 17:20:26 -06:00
|
|
|
|
|
2021-12-05 15:41:33 -06:00
|
|
|
LL | two_ints(1, 2);
|
Implementation for 65853
This attempts to bring better error messages to invalid method calls, by applying some heuristics to identify common mistakes.
The algorithm is inspired by Levenshtein distance and longest common sub-sequence. In essence, we treat the types of the function, and the types of the arguments you provided as two "words" and compute the edits to get from one to the other.
We then modify that algorithm to detect 4 cases:
- A function input is missing
- An extra argument was provided
- The type of an argument is straight up invalid
- Two arguments have been swapped
- A subset of the arguments have been shuffled
(We detect the last two as separate cases so that we can detect two swaps, instead of 4 parameters permuted.)
It helps to understand this argument by paying special attention to terminology: "inputs" refers to the inputs being *expected* by the function, and "arguments" refers to what has been provided at the call site.
The basic sketch of the algorithm is as follows:
- Construct a boolean grid, with a row for each argument, and a column for each input. The cell [i, j] is true if the i'th argument could satisfy the j'th input.
- If we find an argument that could satisfy no inputs, provided for an input that can't be satisfied by any other argument, we consider this an "invalid type".
- Extra arguments are those that can't satisfy any input, provided for an input that *could* be satisfied by another argument.
- Missing inputs are inputs that can't be satisfied by any argument, where the provided argument could satisfy another input
- Swapped / Permuted arguments are identified with a cycle detection algorithm.
As each issue is found, we remove the relevant inputs / arguments and check for more issues. If we find no issues, we match up any "valid" arguments, and start again.
Note that there's a lot of extra complexity:
- We try to stay efficient on the happy path, only computing the diagonal until we find a problem, and then filling in the rest of the matrix.
- Closure arguments are wrapped in a tuple and need to be unwrapped
- We need to resolve closure types after the rest, to allow the most specific type constraints
- We need to handle imported C functions that might be variadic in their inputs.
I tried to document a lot of this in comments in the code and keep the naming clear.
2022-01-21 22:50:54 -06:00
|
|
|
| ^^^^^^^^
|
2021-11-09 17:20:26 -06:00
|
|
|
|
|
|
|
|
note: function defined here
|
2022-01-28 17:27:01 -06:00
|
|
|
--> $DIR/args-instead-of-tuple.rs:25:4
|
2021-11-09 17:20:26 -06:00
|
|
|
|
|
2021-12-05 15:41:33 -06:00
|
|
|
LL | fn two_ints(_: (i32, i32)) {
|
|
|
|
| ^^^^^^^^ -------------
|
2022-06-28 02:12:49 -05:00
|
|
|
help: wrap these arguments in parentheses to construct a tuple
|
2021-11-09 17:20:26 -06:00
|
|
|
|
|
2021-12-05 15:41:33 -06:00
|
|
|
LL | two_ints((1, 2));
|
|
|
|
| + +
|
2021-11-09 17:20:26 -06:00
|
|
|
|
2023-01-04 21:02:10 -06:00
|
|
|
error[E0061]: function takes 1 argument but 2 arguments were supplied
|
2022-01-28 17:27:01 -06:00
|
|
|
--> $DIR/args-instead-of-tuple.rs:22:5
|
2022-01-16 15:47:44 -06:00
|
|
|
|
|
|
|
|
LL | with_generic(3, 4);
|
Implementation for 65853
This attempts to bring better error messages to invalid method calls, by applying some heuristics to identify common mistakes.
The algorithm is inspired by Levenshtein distance and longest common sub-sequence. In essence, we treat the types of the function, and the types of the arguments you provided as two "words" and compute the edits to get from one to the other.
We then modify that algorithm to detect 4 cases:
- A function input is missing
- An extra argument was provided
- The type of an argument is straight up invalid
- Two arguments have been swapped
- A subset of the arguments have been shuffled
(We detect the last two as separate cases so that we can detect two swaps, instead of 4 parameters permuted.)
It helps to understand this argument by paying special attention to terminology: "inputs" refers to the inputs being *expected* by the function, and "arguments" refers to what has been provided at the call site.
The basic sketch of the algorithm is as follows:
- Construct a boolean grid, with a row for each argument, and a column for each input. The cell [i, j] is true if the i'th argument could satisfy the j'th input.
- If we find an argument that could satisfy no inputs, provided for an input that can't be satisfied by any other argument, we consider this an "invalid type".
- Extra arguments are those that can't satisfy any input, provided for an input that *could* be satisfied by another argument.
- Missing inputs are inputs that can't be satisfied by any argument, where the provided argument could satisfy another input
- Swapped / Permuted arguments are identified with a cycle detection algorithm.
As each issue is found, we remove the relevant inputs / arguments and check for more issues. If we find no issues, we match up any "valid" arguments, and start again.
Note that there's a lot of extra complexity:
- We try to stay efficient on the happy path, only computing the diagonal until we find a problem, and then filling in the rest of the matrix.
- Closure arguments are wrapped in a tuple and need to be unwrapped
- We need to resolve closure types after the rest, to allow the most specific type constraints
- We need to handle imported C functions that might be variadic in their inputs.
I tried to document a lot of this in comments in the code and keep the naming clear.
2022-01-21 22:50:54 -06:00
|
|
|
| ^^^^^^^^^^^^
|
2022-01-16 15:47:44 -06:00
|
|
|
|
|
|
|
|
note: function defined here
|
2022-01-28 17:27:01 -06:00
|
|
|
--> $DIR/args-instead-of-tuple.rs:28:4
|
2022-01-16 15:47:44 -06:00
|
|
|
|
|
|
|
|
LL | fn with_generic<T: Copy + Send>((a, b): (i32, T)) {
|
|
|
|
| ^^^^^^^^^^^^ ----------------
|
2022-06-28 02:12:49 -05:00
|
|
|
help: wrap these arguments in parentheses to construct a tuple
|
2022-01-16 15:47:44 -06:00
|
|
|
|
|
|
|
|
LL | with_generic((3, 4));
|
|
|
|
| + +
|
|
|
|
|
2023-01-04 21:02:10 -06:00
|
|
|
error[E0061]: function takes 1 argument but 2 arguments were supplied
|
2022-01-28 17:27:01 -06:00
|
|
|
--> $DIR/args-instead-of-tuple.rs:31:9
|
2022-01-16 15:47:44 -06:00
|
|
|
|
|
|
|
|
LL | with_generic(a, b);
|
Implementation for 65853
This attempts to bring better error messages to invalid method calls, by applying some heuristics to identify common mistakes.
The algorithm is inspired by Levenshtein distance and longest common sub-sequence. In essence, we treat the types of the function, and the types of the arguments you provided as two "words" and compute the edits to get from one to the other.
We then modify that algorithm to detect 4 cases:
- A function input is missing
- An extra argument was provided
- The type of an argument is straight up invalid
- Two arguments have been swapped
- A subset of the arguments have been shuffled
(We detect the last two as separate cases so that we can detect two swaps, instead of 4 parameters permuted.)
It helps to understand this argument by paying special attention to terminology: "inputs" refers to the inputs being *expected* by the function, and "arguments" refers to what has been provided at the call site.
The basic sketch of the algorithm is as follows:
- Construct a boolean grid, with a row for each argument, and a column for each input. The cell [i, j] is true if the i'th argument could satisfy the j'th input.
- If we find an argument that could satisfy no inputs, provided for an input that can't be satisfied by any other argument, we consider this an "invalid type".
- Extra arguments are those that can't satisfy any input, provided for an input that *could* be satisfied by another argument.
- Missing inputs are inputs that can't be satisfied by any argument, where the provided argument could satisfy another input
- Swapped / Permuted arguments are identified with a cycle detection algorithm.
As each issue is found, we remove the relevant inputs / arguments and check for more issues. If we find no issues, we match up any "valid" arguments, and start again.
Note that there's a lot of extra complexity:
- We try to stay efficient on the happy path, only computing the diagonal until we find a problem, and then filling in the rest of the matrix.
- Closure arguments are wrapped in a tuple and need to be unwrapped
- We need to resolve closure types after the rest, to allow the most specific type constraints
- We need to handle imported C functions that might be variadic in their inputs.
I tried to document a lot of this in comments in the code and keep the naming clear.
2022-01-21 22:50:54 -06:00
|
|
|
| ^^^^^^^^^^^^
|
2022-01-16 15:47:44 -06:00
|
|
|
|
|
|
|
|
note: function defined here
|
2022-01-28 17:27:01 -06:00
|
|
|
--> $DIR/args-instead-of-tuple.rs:28:4
|
2022-01-16 15:47:44 -06:00
|
|
|
|
|
|
|
|
LL | fn with_generic<T: Copy + Send>((a, b): (i32, T)) {
|
|
|
|
| ^^^^^^^^^^^^ ----------------
|
2022-06-28 02:12:49 -05:00
|
|
|
help: wrap these arguments in parentheses to construct a tuple
|
2022-01-16 15:47:44 -06:00
|
|
|
|
|
|
|
|
LL | with_generic((a, b));
|
|
|
|
| + +
|
|
|
|
|
2022-01-28 17:27:01 -06:00
|
|
|
error: aborting due to 8 previous errors
|
2021-11-09 17:20:26 -06:00
|
|
|
|
2022-01-28 17:27:01 -06:00
|
|
|
Some errors have detailed explanations: E0061, E0308.
|
|
|
|
For more information about an error, try `rustc --explain E0061`.
|