2020-09-02 10:40:56 +03:00
|
|
|
error[E0369]: cannot add `Vec<R>` to `Vec<R>`
|
2019-03-27 13:13:09 -04:00
|
|
|
--> $DIR/vec-res-add.rs:16:15
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | let k = i + j;
|
2020-09-02 10:40:56 +03:00
|
|
|
| - ^ - Vec<R>
|
2019-03-27 13:13:09 -04:00
|
|
|
| |
|
2020-09-02 10:40:56 +03:00
|
|
|
| Vec<R>
|
2024-06-25 10:00:30 +08:00
|
|
|
|
|
|
|
|
note: the foreign item type `Vec<R>` doesn't implement `Add`
|
|
|
|
--> $SRC_DIR/alloc/src/vec/mod.rs:LL:COL
|
|
|
|
|
|
|
|
|
= note: not implement `Add`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0369`.
|