]> git.lizzy.rs Git - rust.git/blob - tests/ui/cmp_owned.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / cmp_owned.stderr
1 error: this creates an owned instance just for comparison
2   --> $DIR/cmp_owned.rs:14:14
3    |
4 LL |         x != "foo".to_string();
5    |              ^^^^^^^^^^^^^^^^^ help: try: `"foo"`
6    |
7    = note: `-D clippy::cmp-owned` implied by `-D warnings`
8
9 error: this creates an owned instance just for comparison
10   --> $DIR/cmp_owned.rs:16:9
11    |
12 LL |         "foo".to_string() != x;
13    |         ^^^^^^^^^^^^^^^^^ help: try: `"foo"`
14
15 error: this creates an owned instance just for comparison
16   --> $DIR/cmp_owned.rs:23:10
17    |
18 LL |     x != "foo".to_owned();
19    |          ^^^^^^^^^^^^^^^^ help: try: `"foo"`
20
21 error: this creates an owned instance just for comparison
22   --> $DIR/cmp_owned.rs:25:10
23    |
24 LL |     x != String::from("foo");
25    |          ^^^^^^^^^^^^^^^^^^^ help: try: `"foo"`
26
27 error: this creates an owned instance just for comparison
28   --> $DIR/cmp_owned.rs:29:5
29    |
30 LL |     Foo.to_owned() == Foo;
31    |     ^^^^^^^^^^^^^^ help: try: `Foo`
32
33 error: this creates an owned instance just for comparison
34   --> $DIR/cmp_owned.rs:31:30
35    |
36 LL |     "abc".chars().filter(|c| c.to_owned() != 'X');
37    |                              ^^^^^^^^^^^^ help: try: `*c`
38
39 error: this creates an owned instance just for comparison
40   --> $DIR/cmp_owned.rs:38:5
41    |
42 LL |     y.to_owned() == *x;
43    |     ^^^^^^^^^^^^^^^^^^ try implementing the comparison without allocating
44
45 error: this creates an owned instance just for comparison
46   --> $DIR/cmp_owned.rs:43:5
47    |
48 LL |     y.to_owned() == **x;
49    |     ^^^^^^^^^^^^^^^^^^^ try implementing the comparison without allocating
50
51 error: this creates an owned instance just for comparison
52   --> $DIR/cmp_owned.rs:50:9
53    |
54 LL |         self.to_owned() == *other
55    |         ^^^^^^^^^^^^^^^^^^^^^^^^^ try implementing the comparison without allocating
56
57 error: aborting due to 9 previous errors
58