diff options
| author | Reese Williams <rtwill722@gmail.com> | 2019-12-02 21:52:04 -0500 |
|---|---|---|
| committer | Reese Williams <rtwill722@gmail.com> | 2019-12-02 22:01:27 -0500 |
| commit | 7693bb9e1d122bea1b0645dcc201c6ed79c910e2 (patch) | |
| tree | 743cd8c89aabb51017a1492df875695172fcb540 /src/librustc_error_codes/error_codes | |
| parent | 2da942f32802c8233a09744024dfbc34431adf65 (diff) | |
| download | rust-7693bb9e1d122bea1b0645dcc201c6ed79c910e2.tar.gz rust-7693bb9e1d122bea1b0645dcc201c6ed79c910e2.zip | |
Add long error for E0631 and update ui tests.
Diffstat (limited to 'src/librustc_error_codes/error_codes')
| -rw-r--r-- | src/librustc_error_codes/error_codes/E0631.md | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/librustc_error_codes/error_codes/E0631.md b/src/librustc_error_codes/error_codes/E0631.md new file mode 100644 index 00000000000..ad419f82250 --- /dev/null +++ b/src/librustc_error_codes/error_codes/E0631.md @@ -0,0 +1,29 @@ +This error indicates a type mismatch in closure arguments. + +Erroneous code example: + +```compile_fail,E0631 +fn test_strings(string_vec: Vec<String>) -> Vec<bool> { + string_vec + .iter() + .map(|arg: &i32| arg.eq("Test String")) + .collect() +} +``` + +The closure passed to `map` expects a `&String` argument, since `some_vec` +has the type `Vec<String>`. +However, the closure argument is annotated as an `&i32`, which does not match +the type of the iterable. + +This can be resolved by changing the type annotation or removing it entirely +if it can be inferred. + +``` +fn test_strings(string_vec: Vec<String>) -> Vec<bool> { + string_vec + .iter() + .map(|arg| arg.eq("Test String")) + .collect() +} +``` |
