|
1 | 1 | error: calling `as_bytes()` on a string literal
|
2 |
| - --> $DIR/string_lit_as_bytes.rs:7:14 |
| 2 | + --> $DIR/string_lit_as_bytes.rs:13:14 |
3 | 3 | |
|
4 | 4 | LL | let bs = "hello there".as_bytes();
|
5 | 5 | | ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a byte string literal instead: `b"hello there"`
|
6 | 6 | |
|
7 | 7 | = note: `-D clippy::string-lit-as-bytes` implied by `-D warnings`
|
8 | 8 |
|
9 | 9 | error: calling `as_bytes()` on a string literal
|
10 |
| - --> $DIR/string_lit_as_bytes.rs:9:14 |
| 10 | + --> $DIR/string_lit_as_bytes.rs:15:14 |
11 | 11 | |
|
12 | 12 | LL | let bs = r###"raw string with 3# plus " ""###.as_bytes();
|
13 | 13 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a byte string literal instead: `br###"raw string with 3# plus " ""###`
|
14 | 14 |
|
15 | 15 | error: calling `into_bytes()` on a string literal
|
16 |
| - --> $DIR/string_lit_as_bytes.rs:11:14 |
| 16 | + --> $DIR/string_lit_as_bytes.rs:17:14 |
17 | 17 | |
|
18 | 18 | LL | let bs = "lit to string".to_string().into_bytes();
|
19 | 19 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a byte string literal instead: `b"lit to string".to_vec()`
|
20 | 20 |
|
21 | 21 | error: calling `into_bytes()` on a string literal
|
22 |
| - --> $DIR/string_lit_as_bytes.rs:12:14 |
| 22 | + --> $DIR/string_lit_as_bytes.rs:18:14 |
23 | 23 | |
|
24 | 24 | LL | let bs = "lit to owned".to_owned().into_bytes();
|
25 | 25 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a byte string literal instead: `b"lit to owned".to_vec()`
|
26 | 26 |
|
27 | 27 | error: calling `as_bytes()` on `include_str!(..)`
|
28 |
| - --> $DIR/string_lit_as_bytes.rs:25:22 |
| 28 | + --> $DIR/string_lit_as_bytes.rs:33:22 |
29 | 29 | |
|
30 | 30 | LL | let includestr = include_str!("string_lit_as_bytes.rs").as_bytes();
|
31 | 31 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `include_bytes!(..)` instead: `include_bytes!("string_lit_as_bytes.rs")`
|
32 | 32 |
|
33 | 33 | error: calling `as_bytes()` on a string literal
|
34 |
| - --> $DIR/string_lit_as_bytes.rs:27:13 |
| 34 | + --> $DIR/string_lit_as_bytes.rs:35:13 |
35 | 35 | |
|
36 | 36 | LL | let _ = "string with newline/t/n".as_bytes();
|
37 | 37 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a byte string literal instead: `b"string with newline/t/n"`
|
|
0 commit comments