rust-clippy/clippy_tests/examples/cmp_owned.stderr

43 lines
1.2 KiB
Text
Raw Normal View History

2017-05-11 16:59:36 +00:00
error: this creates an owned instance just for comparison
--> cmp_owned.rs:8:14
|
8 | x != "foo".to_string();
2017-05-11 16:59:36 +00:00
| ^^^^^^^^^^^^^^^^^ help: try `"foo"`
|
= note: `-D cmp-owned` implied by `-D warnings`
2017-05-11 16:59:36 +00:00
error: this creates an owned instance just for comparison
--> cmp_owned.rs:10:9
|
10 | "foo".to_string() != x;
2017-05-11 16:59:36 +00:00
| ^^^^^^^^^^^^^^^^^ help: try `"foo"`
2017-05-11 16:59:36 +00:00
error: this creates an owned instance just for comparison
--> cmp_owned.rs:17:10
|
17 | x != "foo".to_owned();
2017-05-11 16:59:36 +00:00
| ^^^^^^^^^^^^^^^^ help: try `"foo"`
2017-05-11 16:59:36 +00:00
error: this creates an owned instance just for comparison
--> cmp_owned.rs:19:10
|
2017-05-11 16:59:36 +00:00
19 | x != String::from("foo");
| ^^^^^^^^^^^^^^^^^^^ help: try `"foo"`
2017-05-11 16:59:36 +00:00
error: this creates an owned instance just for comparison
--> cmp_owned.rs:23:5
2017-05-11 16:59:36 +00:00
|
23 | Foo.to_owned() == Foo;
| ^^^^^^^^^^^^^^ help: try `Foo`
error: this creates an owned instance just for comparison
--> cmp_owned.rs:30:9
2017-05-11 16:59:36 +00:00
|
30 | self.to_owned() == *other
| ^^^^^^^^^^^^^^^ try calling implementing the comparison without allocating
2017-07-03 04:37:30 +00:00
error: aborting due to 6 previous errors
2017-05-11 16:59:36 +00:00
To learn more, run the command again with --verbose.