]> git.lizzy.rs Git - rust.git/blob - tests/ui/useless_asref.stderr
Merge pull request #2309 from rust-lang-nursery/rustc-monitor
[rust.git] / tests / ui / useless_asref.stderr
1 error: this call to `as_ref` does nothing
2   --> $DIR/useless_asref.rs:31:18
3    |
4 31 |         foo_rstr(rstr.as_ref());
5    |                  ^^^^^^^^^^^^^ help: try this: `rstr`
6    |
7 note: lint level defined here
8   --> $DIR/useless_asref.rs:1:9
9    |
10 1  | #![deny(useless_asref)]
11    |         ^^^^^^^^^^^^^
12
13 error: this call to `as_ref` does nothing
14   --> $DIR/useless_asref.rs:33:20
15    |
16 33 |         foo_rslice(rslice.as_ref());
17    |                    ^^^^^^^^^^^^^^^ help: try this: `rslice`
18
19 error: this call to `as_mut` does nothing
20   --> $DIR/useless_asref.rs:37:21
21    |
22 37 |         foo_mrslice(mrslice.as_mut());
23    |                     ^^^^^^^^^^^^^^^^ help: try this: `mrslice`
24
25 error: this call to `as_ref` does nothing
26   --> $DIR/useless_asref.rs:39:20
27    |
28 39 |         foo_rslice(mrslice.as_ref());
29    |                    ^^^^^^^^^^^^^^^^ help: try this: `mrslice`
30
31 error: this call to `as_ref` does nothing
32   --> $DIR/useless_asref.rs:46:20
33    |
34 46 |         foo_rslice(rrrrrslice.as_ref());
35    |                    ^^^^^^^^^^^^^^^^^^^ help: try this: `rrrrrslice`
36
37 error: this call to `as_ref` does nothing
38   --> $DIR/useless_asref.rs:48:18
39    |
40 48 |         foo_rstr(rrrrrstr.as_ref());
41    |                  ^^^^^^^^^^^^^^^^^ help: try this: `rrrrrstr`
42
43 error: this call to `as_mut` does nothing
44   --> $DIR/useless_asref.rs:53:21
45    |
46 53 |         foo_mrslice(mrrrrrslice.as_mut());
47    |                     ^^^^^^^^^^^^^^^^^^^^ help: try this: `mrrrrrslice`
48
49 error: this call to `as_ref` does nothing
50   --> $DIR/useless_asref.rs:55:20
51    |
52 55 |         foo_rslice(mrrrrrslice.as_ref());
53    |                    ^^^^^^^^^^^^^^^^^^^^ help: try this: `mrrrrrslice`
54
55 error: this call to `as_ref` does nothing
56   --> $DIR/useless_asref.rs:58:16
57    |
58 58 |     foo_rrrrmr((&&&&MoreRef).as_ref());
59    |                ^^^^^^^^^^^^^^^^^^^^^^ help: try this: `(&&&&MoreRef)`
60
61 error: this call to `as_mut` does nothing
62    --> $DIR/useless_asref.rs:104:13
63     |
64 104 |     foo_mrt(mrt.as_mut());
65     |             ^^^^^^^^^^^^ help: try this: `mrt`
66
67 error: this call to `as_ref` does nothing
68    --> $DIR/useless_asref.rs:106:12
69     |
70 106 |     foo_rt(mrt.as_ref());
71     |            ^^^^^^^^^^^^ help: try this: `mrt`
72
73 error: aborting due to 11 previous errors
74