blob: 39552697631dbab21799fb65244b92a9a9bdafb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
error[E0369]: binary operation `+` cannot be applied to type `std::vec::Vec<R>`
--> $DIR/vec-res-add.rs:16:13
|
LL | let k = i + j;
| ^^^^^
|
= note: an implementation of `std::ops::Add` might be missing for `std::vec::Vec<R>`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0369`.
|