2019-03-14 05:59:30 +00:00
|
|
|
error: calling `as_bytes()` on a string literal
|
2023-04-18 07:14:00 +00:00
|
|
|
--> $DIR/string_lit_as_bytes.rs:13:14
|
2019-03-14 05:59:30 +00:00
|
|
|
|
|
|
|
|
LL | let bs = "hello there".as_bytes();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a byte string literal instead: `b"hello there"`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::string-lit-as-bytes` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: calling `as_bytes()` on a string literal
|
2023-04-18 07:14:00 +00:00
|
|
|
--> $DIR/string_lit_as_bytes.rs:15:14
|
2019-03-14 05:59:30 +00:00
|
|
|
|
|
2019-03-10 10:06:19 +00:00
|
|
|
LL | let bs = r###"raw string with 3# plus " ""###.as_bytes();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a byte string literal instead: `br###"raw string with 3# plus " ""###`
|
2019-03-14 05:59:30 +00:00
|
|
|
|
2021-03-24 00:10:27 +00:00
|
|
|
error: calling `into_bytes()` on a string literal
|
2023-04-18 07:14:00 +00:00
|
|
|
--> $DIR/string_lit_as_bytes.rs:17:14
|
2021-03-24 00:10:27 +00:00
|
|
|
|
|
|
|
|
LL | let bs = "lit to string".to_string().into_bytes();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a byte string literal instead: `b"lit to string".to_vec()`
|
|
|
|
|
|
|
|
error: calling `into_bytes()` on a string literal
|
2023-04-18 07:14:00 +00:00
|
|
|
--> $DIR/string_lit_as_bytes.rs:18:14
|
2021-03-24 00:10:27 +00:00
|
|
|
|
|
|
|
|
LL | let bs = "lit to owned".to_owned().into_bytes();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a byte string literal instead: `b"lit to owned".to_vec()`
|
|
|
|
|
2019-03-14 05:59:30 +00:00
|
|
|
error: calling `as_bytes()` on `include_str!(..)`
|
2023-04-18 07:14:00 +00:00
|
|
|
--> $DIR/string_lit_as_bytes.rs:33:22
|
2019-03-14 05:59:30 +00:00
|
|
|
|
|
2021-03-30 00:17:03 +00:00
|
|
|
LL | let includestr = include_str!("string_lit_as_bytes.rs").as_bytes();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `include_bytes!(..)` instead: `include_bytes!("string_lit_as_bytes.rs")`
|
2019-03-14 05:59:30 +00:00
|
|
|
|
2019-11-11 22:42:12 +00:00
|
|
|
error: calling `as_bytes()` on a string literal
|
2023-04-18 07:14:00 +00:00
|
|
|
--> $DIR/string_lit_as_bytes.rs:35:13
|
2019-11-11 22:42:12 +00:00
|
|
|
|
|
|
|
|
LL | let _ = "string with newline/t/n".as_bytes();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a byte string literal instead: `b"string with newline/t/n"`
|
|
|
|
|
2021-03-24 00:10:27 +00:00
|
|
|
error: aborting due to 6 previous errors
|
2019-03-14 05:59:30 +00:00
|
|
|
|