2021-06-10 08:12:06 +00:00
|
|
|
error: use of `extend` instead of `append` for adding the full range of a second vector
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/extend_with_drain.rs:8:5
|
2021-06-10 08:12:06 +00:00
|
|
|
|
|
|
|
|
LL | vec2.extend(vec1.drain(..));
|
2023-07-01 11:08:01 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `vec2.append(&mut vec1)`
|
2021-06-10 08:12:06 +00:00
|
|
|
|
|
2021-07-29 10:10:18 +00:00
|
|
|
= note: `-D clippy::extend-with-drain` implied by `-D warnings`
|
2021-06-10 08:12:06 +00:00
|
|
|
|
|
|
|
error: use of `extend` instead of `append` for adding the full range of a second vector
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/extend_with_drain.rs:13:5
|
2021-06-10 08:12:06 +00:00
|
|
|
|
|
|
|
|
LL | vec4.extend(vec3.drain(..));
|
2023-07-01 11:08:01 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `vec4.append(&mut vec3)`
|
2021-06-10 08:12:06 +00:00
|
|
|
|
|
|
|
error: use of `extend` instead of `append` for adding the full range of a second vector
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/extend_with_drain.rs:17:5
|
2021-06-10 08:12:06 +00:00
|
|
|
|
|
|
|
|
LL | vec11.extend(return_vector().drain(..));
|
2023-07-01 11:08:01 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `vec11.append(&mut return_vector())`
|
2021-06-10 08:12:06 +00:00
|
|
|
|
2021-08-05 15:15:44 +00:00
|
|
|
error: use of `extend` instead of `append` for adding the full range of a second vector
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/extend_with_drain.rs:48:5
|
2021-08-05 15:15:44 +00:00
|
|
|
|
|
|
|
|
LL | y.extend(ref_x.drain(..));
|
2023-07-01 11:08:01 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `y.append(ref_x)`
|
2021-08-05 15:15:44 +00:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
2021-06-10 08:12:06 +00:00
|
|
|
|