rust/tests/ui/needless_pass_by_value.stderr

179 lines
7.3 KiB
Text
Raw Normal View History

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