2023-09-25 04:28:58 -05:00
|
|
|
error: this `as_str` is redundant and can be removed as the method immediately following exists on `String` too
|
2024-03-21 16:20:40 -05:00
|
|
|
--> tests/ui/redundant_as_str.rs:8:29
|
2023-09-25 04:28:58 -05:00
|
|
|
|
|
|
|
|
LL | let _redundant = string.as_str().as_bytes();
|
|
|
|
| ^^^^^^^^^^^^^^^^^ help: try: `as_bytes`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::redundant-as-str` implied by `-D warnings`
|
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::redundant_as_str)]`
|
|
|
|
|
|
|
|
error: this `as_str` is redundant and can be removed as the method immediately following exists on `String` too
|
2024-03-21 16:20:40 -05:00
|
|
|
--> tests/ui/redundant_as_str.rs:9:29
|
2023-09-25 04:28:58 -05:00
|
|
|
|
|
|
|
|
LL | let _redundant = string.as_str().is_empty();
|
|
|
|
| ^^^^^^^^^^^^^^^^^ help: try: `is_empty`
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|