]> git.lizzy.rs Git - rust.git/blob - tests/ui/cmp_owned.stderr
Adapt the *.stderr files of the ui-tests to the tool_lints
[rust.git] / tests / ui / cmp_owned.stderr
1 error: this creates an owned instance just for comparison
2  --> $DIR/cmp_owned.rs:8:14
3   |
4 8 |         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:10:9
11    |
12 10 |         "foo".to_string() != x;
13    |         ^^^^^^^^^^^^^^^^^ help: try: `"foo"`
14
15 error: this creates an owned instance just for comparison
16   --> $DIR/cmp_owned.rs:17:10
17    |
18 17 |     x != "foo".to_owned();
19    |          ^^^^^^^^^^^^^^^^ help: try: `"foo"`
20
21 error: this creates an owned instance just for comparison
22   --> $DIR/cmp_owned.rs:19:10
23    |
24 19 |     x != String::from("foo");
25    |          ^^^^^^^^^^^^^^^^^^^ help: try: `"foo"`
26
27 error: this creates an owned instance just for comparison
28   --> $DIR/cmp_owned.rs:23:5
29    |
30 23 |     Foo.to_owned() == Foo;
31    |     ^^^^^^^^^^^^^^ help: try: `Foo`
32
33 error: this creates an owned instance just for comparison
34   --> $DIR/cmp_owned.rs:30:9
35    |
36 30 |         self.to_owned() == *other
37    |         ^^^^^^^^^^^^^^^ try calling implementing the comparison without allocating
38
39 error: aborting due to 6 previous errors
40