2017-10-20 10:39:20 -05:00
|
|
|
error: this call to `as_ref` does nothing
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/useless_asref.rs:50:18
|
2017-10-20 10:39:20 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
50 | foo_rstr(rstr.as_ref());
|
2017-10-20 10:39:20 -05:00
|
|
|
| ^^^^^^^^^^^^^ help: try this: `rstr`
|
|
|
|
|
|
|
|
|
note: lint level defined here
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/useless_asref.rs:10:9
|
2017-10-20 10:39:20 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
10 | #![deny(clippy::useless_asref)]
|
2018-08-01 09:30:44 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
2017-10-20 10:39:20 -05:00
|
|
|
|
|
|
|
error: this call to `as_ref` does nothing
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/useless_asref.rs:52:20
|
2017-10-20 10:39:20 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
52 | foo_rslice(rslice.as_ref());
|
2017-10-20 10:39:20 -05:00
|
|
|
| ^^^^^^^^^^^^^^^ help: try this: `rslice`
|
|
|
|
|
|
|
|
error: this call to `as_mut` does nothing
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/useless_asref.rs:56:21
|
2017-10-20 10:39:20 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
56 | foo_mrslice(mrslice.as_mut());
|
2017-10-20 10:39:20 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^ help: try this: `mrslice`
|
|
|
|
|
|
|
|
error: this call to `as_ref` does nothing
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/useless_asref.rs:58:20
|
2017-10-20 10:39:20 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
58 | foo_rslice(mrslice.as_ref());
|
2017-10-20 10:39:20 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^ help: try this: `mrslice`
|
|
|
|
|
|
|
|
error: this call to `as_ref` does nothing
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/useless_asref.rs:65:20
|
2017-10-20 10:39:20 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
65 | foo_rslice(rrrrrslice.as_ref());
|
2017-10-20 10:39:20 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^ help: try this: `rrrrrslice`
|
|
|
|
|
|
|
|
error: this call to `as_ref` does nothing
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/useless_asref.rs:67:18
|
2017-10-20 10:39:20 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
67 | foo_rstr(rrrrrstr.as_ref());
|
2017-10-20 10:39:20 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^ help: try this: `rrrrrstr`
|
|
|
|
|
|
|
|
error: this call to `as_mut` does nothing
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/useless_asref.rs:72:21
|
2017-10-20 10:39:20 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
72 | foo_mrslice(mrrrrrslice.as_mut());
|
2017-10-20 10:39:20 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^ help: try this: `mrrrrrslice`
|
|
|
|
|
|
|
|
error: this call to `as_ref` does nothing
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/useless_asref.rs:74:20
|
2017-10-20 10:39:20 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
74 | foo_rslice(mrrrrrslice.as_ref());
|
2017-10-20 10:39:20 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^ help: try this: `mrrrrrslice`
|
|
|
|
|
|
|
|
error: this call to `as_ref` does nothing
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/useless_asref.rs:77:16
|
2017-10-20 10:39:20 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
77 | foo_rrrrmr((&&&&MoreRef).as_ref());
|
2017-10-20 10:39:20 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ help: try this: `(&&&&MoreRef)`
|
|
|
|
|
2017-10-21 12:42:35 -05:00
|
|
|
error: this call to `as_mut` does nothing
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/useless_asref.rs:127:13
|
2017-10-21 12:42:35 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
127 | foo_mrt(mrt.as_mut());
|
2017-10-21 12:42:35 -05:00
|
|
|
| ^^^^^^^^^^^^ help: try this: `mrt`
|
|
|
|
|
|
|
|
error: this call to `as_ref` does nothing
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/useless_asref.rs:129:12
|
2017-10-21 12:42:35 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
129 | foo_rt(mrt.as_ref());
|
2017-10-21 12:42:35 -05:00
|
|
|
| ^^^^^^^^^^^^ help: try this: `mrt`
|
|
|
|
|
2018-01-16 10:06:27 -06:00
|
|
|
error: aborting due to 11 previous errors
|
|
|
|
|