2019-03-14 05:59:30 +00:00
|
|
|
error: calling `as_bytes()` on a string literal
|
|
|
|
--> $DIR/string_lit_as_bytes.rs:7:14
|
|
|
|
|
|
|
|
|
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
|
|
|
|
--> $DIR/string_lit_as_bytes.rs:9:14
|
|
|
|
|
|
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
|
|
|
|
|
|
|
error: calling `as_bytes()` on `include_str!(..)`
|
2020-06-01 07:58:42 +00:00
|
|
|
--> $DIR/string_lit_as_bytes.rs:19:22
|
2019-03-14 05:59:30 +00:00
|
|
|
|
|
2019-09-25 11:31:46 +00:00
|
|
|
LL | let includestr = include_str!("entry_unfixable.rs").as_bytes();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `include_bytes!(..)` instead: `include_bytes!("entry_unfixable.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
|
2020-06-01 07:58:42 +00:00
|
|
|
--> $DIR/string_lit_as_bytes.rs:21: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"`
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
2019-03-14 05:59:30 +00:00
|
|
|
|