]> git.lizzy.rs Git - rust.git/blob - src/test/ui/type-inference/sort_by_key.stderr
Update const_forget.rs
[rust.git] / src / test / ui / type-inference / sort_by_key.stderr
1 error[E0282]: type annotations needed
2   --> $DIR/sort_by_key.rs:3:9
3    |
4 LL |     lst.sort_by_key(|&(v, _)| v.iter().sum());
5    |         ^^^^^^^^^^^                    --- help: consider specifying the type argument in the method call: `sum::<S>`
6    |         |
7    |         cannot infer type for type parameter `K` declared on the method `sort_by_key`
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0282`.