2017-02-20 03:50:31 +00:00
|
|
|
error: this argument is passed by value, but not consumed in the function body
|
2019-02-06 07:09:56 +00:00
|
|
|
--> $DIR/needless_pass_by_value.rs:16:23
|
2018-08-01 14:30:44 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn foo<T: Default>(v: Vec<T>, w: Vec<T>, mut x: Vec<T>, y: Vec<T>) -> Vec<T> {
|
2018-08-01 14:30:44 +00:00
|
|
|
| ^^^^^^ help: consider changing the type to: `&[T]`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::needless-pass-by-value` implied by `-D warnings`
|
2017-02-20 03:50:31 +00:00
|
|
|
|
|
|
|
error: this argument is passed by value, but not consumed in the function body
|
2019-02-06 07:09:56 +00:00
|
|
|
--> $DIR/needless_pass_by_value.rs:30:11
|
2017-02-20 03:50:31 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn bar(x: String, y: Wrapper) {
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^ help: consider changing the type to: `&str`
|
2017-02-20 03:50:31 +00:00
|
|
|
|
|
|
|
error: this argument is passed by value, but not consumed in the function body
|
2019-02-06 07:09:56 +00:00
|
|
|
--> $DIR/needless_pass_by_value.rs:30:22
|
2017-02-20 03:50:31 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn bar(x: String, y: Wrapper) {
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^ help: consider taking a reference instead: `&Wrapper`
|
2017-02-20 03:50:31 +00:00
|
|
|
|
|
|
|
error: this argument is passed by value, but not consumed in the function body
|
2019-02-06 07:09:56 +00:00
|
|
|
--> $DIR/needless_pass_by_value.rs:36:71
|
2017-02-20 03:50:31 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn test_borrow_trait<T: Borrow<str>, U: AsRef<str>, V>(t: T, u: U, v: V) {
|
2017-10-08 01:23:41 +00:00
|
|
|
| ^ help: consider taking a reference instead: `&V`
|
2017-02-20 03:50:31 +00:00
|
|
|
|
2017-02-20 07:45:37 +00:00
|
|
|
error: this argument is passed by value, but not consumed in the function body
|
2019-02-06 07:09:56 +00:00
|
|
|
--> $DIR/needless_pass_by_value.rs:48:18
|
2017-02-20 07:45:37 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn test_match(x: Option<Option<String>>, y: Option<Option<String>>) {
|
2017-02-20 07:45:37 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
help: consider taking a reference instead
|
2017-07-10 13:29:29 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn test_match(x: &Option<Option<String>>, y: Option<Option<String>>) {
|
|
|
|
LL | match *x {
|
2017-07-10 13:29:29 +00:00
|
|
|
|
|
2017-02-20 07:45:37 +00:00
|
|
|
|
|
|
|
error: this argument is passed by value, but not consumed in the function body
|
2019-02-06 07:09:56 +00:00
|
|
|
--> $DIR/needless_pass_by_value.rs:61:24
|
2017-02-20 07:45:37 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn test_destructure(x: Wrapper, y: Wrapper, z: Wrapper) {
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^ help: consider taking a reference instead: `&Wrapper`
|
2017-02-20 07:45:37 +00:00
|
|
|
|
2017-02-20 09:18:31 +00:00
|
|
|
error: this argument is passed by value, but not consumed in the function body
|
2019-02-06 07:09:56 +00:00
|
|
|
--> $DIR/needless_pass_by_value.rs:61:36
|
2017-02-20 09:18:31 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn test_destructure(x: Wrapper, y: Wrapper, z: Wrapper) {
|
2017-02-20 09:18:31 +00:00
|
|
|
| ^^^^^^^
|
|
|
|
help: consider taking a reference instead
|
2017-07-10 13:29:29 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn test_destructure(x: Wrapper, y: &Wrapper, z: Wrapper) {
|
|
|
|
LL | let Wrapper(s) = z; // moved
|
|
|
|
LL | let Wrapper(ref t) = *y; // not moved
|
|
|
|
LL | let Wrapper(_) = *y; // still not moved
|
2017-10-08 01:23:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
error: this argument is passed by value, but not consumed in the function body
|
2019-02-06 07:09:56 +00:00
|
|
|
--> $DIR/needless_pass_by_value.rs:77:49
|
2017-07-10 13:29:29 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn test_blanket_ref<T: Foo, S: Serialize>(_foo: T, _serializable: S) {}
|
2017-10-08 01:23:41 +00:00
|
|
|
| ^ help: consider taking a reference instead: `&T`
|
2017-02-20 09:18:31 +00:00
|
|
|
|
2017-10-08 08:51:44 +00:00
|
|
|
error: this argument is passed by value, but not consumed in the function body
|
2019-02-06 07:09:56 +00:00
|
|
|
--> $DIR/needless_pass_by_value.rs:79:18
|
2017-10-08 08:51:44 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn issue_2114(s: String, t: String, u: Vec<i32>, v: Vec<i32>) {
|
2017-10-08 08:51:44 +00:00
|
|
|
| ^^^^^^ help: consider taking a reference instead: `&String`
|
|
|
|
|
|
|
|
error: this argument is passed by value, but not consumed in the function body
|
2019-02-06 07:09:56 +00:00
|
|
|
--> $DIR/needless_pass_by_value.rs:79:29
|
2017-10-08 08:51:44 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn issue_2114(s: String, t: String, u: Vec<i32>, v: Vec<i32>) {
|
2017-10-08 08:51:44 +00:00
|
|
|
| ^^^^^^
|
|
|
|
help: consider changing the type to
|
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn issue_2114(s: String, t: &str, u: Vec<i32>, v: Vec<i32>) {
|
2017-10-08 08:51:44 +00:00
|
|
|
| ^^^^
|
|
|
|
help: change `t.clone()` to
|
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _ = t.to_string();
|
2017-10-08 08:51:44 +00:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: this argument is passed by value, but not consumed in the function body
|
2019-02-06 07:09:56 +00:00
|
|
|
--> $DIR/needless_pass_by_value.rs:79:40
|
2017-10-08 08:51:44 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn issue_2114(s: String, t: String, u: Vec<i32>, v: Vec<i32>) {
|
2017-10-08 08:51:44 +00:00
|
|
|
| ^^^^^^^^ help: consider taking a reference instead: `&Vec<i32>`
|
|
|
|
|
|
|
|
error: this argument is passed by value, but not consumed in the function body
|
2019-02-06 07:09:56 +00:00
|
|
|
--> $DIR/needless_pass_by_value.rs:79:53
|
2017-10-08 08:51:44 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn issue_2114(s: String, t: String, u: Vec<i32>, v: Vec<i32>) {
|
2017-10-08 08:51:44 +00:00
|
|
|
| ^^^^^^^^
|
|
|
|
help: consider changing the type to
|
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn issue_2114(s: String, t: String, u: Vec<i32>, v: &[i32]) {
|
2017-10-08 08:51:44 +00:00
|
|
|
| ^^^^^^
|
|
|
|
help: change `v.clone()` to
|
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _ = v.to_owned();
|
2017-10-08 08:51:44 +00:00
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
2017-11-03 08:24:10 +00:00
|
|
|
error: this argument is passed by value, but not consumed in the function body
|
2019-02-06 07:09:56 +00:00
|
|
|
--> $DIR/needless_pass_by_value.rs:92:12
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | s: String,
|
|
|
|
| ^^^^^^ help: consider changing the type to: `&str`
|
2017-11-03 08:24:10 +00:00
|
|
|
|
|
|
|
error: this argument is passed by value, but not consumed in the function body
|
2019-02-06 07:09:56 +00:00
|
|
|
--> $DIR/needless_pass_by_value.rs:93:12
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | t: String,
|
|
|
|
| ^^^^^^ help: consider taking a reference instead: `&String`
|
2017-11-03 08:24:10 +00:00
|
|
|
|
|
|
|
error: this argument is passed by value, but not consumed in the function body
|
2019-02-06 07:09:56 +00:00
|
|
|
--> $DIR/needless_pass_by_value.rs:102:23
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | fn baz(&self, _u: U, _s: Self) {}
|
|
|
|
| ^ help: consider taking a reference instead: `&U`
|
2017-11-03 08:24:10 +00:00
|
|
|
|
2017-11-03 08:56:26 +00:00
|
|
|
error: this argument is passed by value, but not consumed in the function body
|
2019-02-06 07:09:56 +00:00
|
|
|
--> $DIR/needless_pass_by_value.rs:102:30
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | fn baz(&self, _u: U, _s: Self) {}
|
|
|
|
| ^^^^ help: consider taking a reference instead: `&Self`
|
2018-01-18 13:27:47 +00:00
|
|
|
|
|
|
|
error: this argument is passed by value, but not consumed in the function body
|
2019-02-06 07:09:56 +00:00
|
|
|
--> $DIR/needless_pass_by_value.rs:124:24
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | fn bar_copy(x: u32, y: CopyWrapper) {
|
|
|
|
| ^^^^^^^^^^^ help: consider taking a reference instead: `&CopyWrapper`
|
|
|
|
|
|
2018-01-18 13:27:47 +00:00
|
|
|
help: consider marking this type as Copy
|
2019-02-06 07:09:56 +00:00
|
|
|
--> $DIR/needless_pass_by_value.rs:122:1
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | struct CopyWrapper(u32);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-01-18 13:27:47 +00:00
|
|
|
|
|
|
|
error: this argument is passed by value, but not consumed in the function body
|
2019-02-06 07:09:56 +00:00
|
|
|
--> $DIR/needless_pass_by_value.rs:130:29
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | fn test_destructure_copy(x: CopyWrapper, y: CopyWrapper, z: CopyWrapper) {
|
|
|
|
| ^^^^^^^^^^^ help: consider taking a reference instead: `&CopyWrapper`
|
|
|
|
|
|
2018-01-18 13:27:47 +00:00
|
|
|
help: consider marking this type as Copy
|
2019-02-06 07:09:56 +00:00
|
|
|
--> $DIR/needless_pass_by_value.rs:122:1
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | struct CopyWrapper(u32);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-01-18 13:27:47 +00:00
|
|
|
|
|
|
|
error: this argument is passed by value, but not consumed in the function body
|
2019-02-06 07:09:56 +00:00
|
|
|
--> $DIR/needless_pass_by_value.rs:130:45
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | fn test_destructure_copy(x: CopyWrapper, y: CopyWrapper, z: CopyWrapper) {
|
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
2018-01-18 13:27:47 +00:00
|
|
|
help: consider marking this type as Copy
|
2019-02-06 07:09:56 +00:00
|
|
|
--> $DIR/needless_pass_by_value.rs:122:1
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | struct CopyWrapper(u32);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-01-18 13:27:47 +00:00
|
|
|
help: consider taking a reference instead
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | fn test_destructure_copy(x: CopyWrapper, y: &CopyWrapper, z: CopyWrapper) {
|
|
|
|
LL | let CopyWrapper(s) = z; // moved
|
|
|
|
LL | let CopyWrapper(ref t) = *y; // not moved
|
|
|
|
LL | let CopyWrapper(_) = *y; // still not moved
|
|
|
|
|
|
|
|
|
|
|
|
|
error: this argument is passed by value, but not consumed in the function body
|
2019-02-06 07:09:56 +00:00
|
|
|
--> $DIR/needless_pass_by_value.rs:130:61
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | fn test_destructure_copy(x: CopyWrapper, y: CopyWrapper, z: CopyWrapper) {
|
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
2018-01-18 13:27:47 +00:00
|
|
|
help: consider marking this type as Copy
|
2019-02-06 07:09:56 +00:00
|
|
|
--> $DIR/needless_pass_by_value.rs:122:1
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | struct CopyWrapper(u32);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-01-18 13:27:47 +00:00
|
|
|
help: consider taking a reference instead
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | fn test_destructure_copy(x: CopyWrapper, y: CopyWrapper, z: &CopyWrapper) {
|
|
|
|
LL | let CopyWrapper(s) = *z; // moved
|
|
|
|
|
|
2017-11-03 08:56:26 +00:00
|
|
|
|
2018-10-01 20:33:20 +00:00
|
|
|
error: this argument is passed by value, but not consumed in the function body
|
2019-02-06 07:09:56 +00:00
|
|
|
--> $DIR/needless_pass_by_value.rs:142:40
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | fn some_fun<'b, S: Bar<'b, ()>>(_item: S) {}
|
|
|
|
| ^ help: consider taking a reference instead: `&S`
|
2018-10-01 20:33:20 +00:00
|
|
|
|
|
|
|
error: this argument is passed by value, but not consumed in the function body
|
2019-02-06 07:09:56 +00:00
|
|
|
--> $DIR/needless_pass_by_value.rs:147:20
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | fn more_fun(_item: impl Club<'static, i32>) {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^ help: consider taking a reference instead: `&impl Club<'static, i32>`
|
2018-10-01 20:33:20 +00:00
|
|
|
|
|
|
|
error: aborting due to 22 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|