rust-clippy/tests/ui/useless_asref.stderr

93 lines
2.8 KiB
Text
Raw Normal View History

2017-10-20 15:39:20 +00:00
error: this call to `as_ref` does nothing
--> $DIR/useless_asref.rs:48:18
2017-10-20 15:39:20 +00:00
|
2018-12-27 15:57:55 +00:00
LL | foo_rstr(rstr.as_ref());
2023-07-01 11:08:01 +00:00
| ^^^^^^^^^^^^^ help: try: `rstr`
2017-10-20 15:39:20 +00:00
|
2020-01-31 19:21:10 +00:00
note: the lint level is defined here
2023-07-27 11:40:22 +00:00
--> $DIR/useless_asref.rs:1:9
2017-10-20 15:39:20 +00:00
|
2018-12-27 15:57:55 +00:00
LL | #![deny(clippy::useless_asref)]
| ^^^^^^^^^^^^^^^^^^^^^
2017-10-20 15:39:20 +00:00
error: this call to `as_ref` does nothing
--> $DIR/useless_asref.rs:50:20
2017-10-20 15:39:20 +00:00
|
2018-12-27 15:57:55 +00:00
LL | foo_rslice(rslice.as_ref());
2023-07-01 11:08:01 +00:00
| ^^^^^^^^^^^^^^^ help: try: `rslice`
2017-10-20 15:39:20 +00:00
error: this call to `as_mut` does nothing
--> $DIR/useless_asref.rs:54:21
2017-10-20 15:39:20 +00:00
|
2018-12-27 15:57:55 +00:00
LL | foo_mrslice(mrslice.as_mut());
2023-07-01 11:08:01 +00:00
| ^^^^^^^^^^^^^^^^ help: try: `mrslice`
2017-10-20 15:39:20 +00:00
error: this call to `as_ref` does nothing
--> $DIR/useless_asref.rs:56:20
2017-10-20 15:39:20 +00:00
|
2018-12-27 15:57:55 +00:00
LL | foo_rslice(mrslice.as_ref());
2023-07-01 11:08:01 +00:00
| ^^^^^^^^^^^^^^^^ help: try: `mrslice`
2017-10-20 15:39:20 +00:00
error: this call to `as_ref` does nothing
--> $DIR/useless_asref.rs:63:20
2017-10-20 15:39:20 +00:00
|
2018-12-27 15:57:55 +00:00
LL | foo_rslice(rrrrrslice.as_ref());
2023-07-01 11:08:01 +00:00
| ^^^^^^^^^^^^^^^^^^^ help: try: `rrrrrslice`
2017-10-20 15:39:20 +00:00
error: this call to `as_ref` does nothing
--> $DIR/useless_asref.rs:65:18
2017-10-20 15:39:20 +00:00
|
2018-12-27 15:57:55 +00:00
LL | foo_rstr(rrrrrstr.as_ref());
2023-07-01 11:08:01 +00:00
| ^^^^^^^^^^^^^^^^^ help: try: `rrrrrstr`
2017-10-20 15:39:20 +00:00
error: this call to `as_mut` does nothing
--> $DIR/useless_asref.rs:70:21
2017-10-20 15:39:20 +00:00
|
2018-12-27 15:57:55 +00:00
LL | foo_mrslice(mrrrrrslice.as_mut());
2023-07-01 11:08:01 +00:00
| ^^^^^^^^^^^^^^^^^^^^ help: try: `mrrrrrslice`
2017-10-20 15:39:20 +00:00
error: this call to `as_ref` does nothing
--> $DIR/useless_asref.rs:72:20
2017-10-20 15:39:20 +00:00
|
2018-12-27 15:57:55 +00:00
LL | foo_rslice(mrrrrrslice.as_ref());
2023-07-01 11:08:01 +00:00
| ^^^^^^^^^^^^^^^^^^^^ help: try: `mrrrrrslice`
2017-10-20 15:39:20 +00:00
error: this call to `as_ref` does nothing
--> $DIR/useless_asref.rs:76:16
2017-10-20 15:39:20 +00:00
|
2018-12-27 15:57:55 +00:00
LL | foo_rrrrmr((&&&&MoreRef).as_ref());
2023-07-01 11:08:01 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^ help: try: `(&&&&MoreRef)`
2017-10-20 15:39:20 +00:00
2017-10-21 17:42:35 +00:00
error: this call to `as_mut` does nothing
--> $DIR/useless_asref.rs:126:13
2018-12-27 15:57:55 +00:00
|
LL | foo_mrt(mrt.as_mut());
2023-07-01 11:08:01 +00:00
| ^^^^^^^^^^^^ help: try: `mrt`
2017-10-21 17:42:35 +00:00
error: this call to `as_ref` does nothing
--> $DIR/useless_asref.rs:128:12
2018-12-27 15:57:55 +00:00
|
LL | foo_rt(mrt.as_ref());
2023-07-01 11:08:01 +00:00
| ^^^^^^^^^^^^ help: try: `mrt`
2017-10-21 17:42:35 +00:00
error: this call to `as_ref.map(...)` does nothing
--> $DIR/useless_asref.rs:139:13
2024-01-06 15:56:38 +00:00
|
LL | let z = x.as_ref().map(String::clone);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `x.clone()`
error: this call to `as_ref.map(...)` does nothing
--> $DIR/useless_asref.rs:141:13
2024-01-06 15:56:38 +00:00
|
LL | let z = x.as_ref().map(|z| z.clone());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `x.clone()`
2024-01-06 15:56:38 +00:00
error: this call to `as_ref.map(...)` does nothing
--> $DIR/useless_asref.rs:143:13
2024-01-06 15:56:38 +00:00
|
LL | let z = x.as_ref().map(|z| String::clone(z));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `x.clone()`
2024-01-06 15:56:38 +00:00
error: aborting due to 14 previous errors
2018-01-16 16:06:27 +00:00