]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/string_lit_as_bytes.stderr
Auto merge of #107843 - bjorn3:sync_cg_clif-2023-02-09, r=bjorn3
[rust.git] / src / tools / clippy / tests / ui / string_lit_as_bytes.stderr
1 error: calling `as_bytes()` on a string literal
2   --> $DIR/string_lit_as_bytes.rs:7:14
3    |
4 LL |     let bs = "hello there".as_bytes();
5    |              ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a byte string literal instead: `b"hello there"`
6    |
7    = note: `-D clippy::string-lit-as-bytes` implied by `-D warnings`
8
9 error: calling `as_bytes()` on a string literal
10   --> $DIR/string_lit_as_bytes.rs:9:14
11    |
12 LL |     let bs = r###"raw string with 3# plus " ""###.as_bytes();
13    |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a byte string literal instead: `br###"raw string with 3# plus " ""###`
14
15 error: calling `into_bytes()` on a string literal
16   --> $DIR/string_lit_as_bytes.rs:11:14
17    |
18 LL |     let bs = "lit to string".to_string().into_bytes();
19    |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a byte string literal instead: `b"lit to string".to_vec()`
20
21 error: calling `into_bytes()` on a string literal
22   --> $DIR/string_lit_as_bytes.rs:12:14
23    |
24 LL |     let bs = "lit to owned".to_owned().into_bytes();
25    |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a byte string literal instead: `b"lit to owned".to_vec()`
26
27 error: calling `as_bytes()` on `include_str!(..)`
28   --> $DIR/string_lit_as_bytes.rs:25:22
29    |
30 LL |     let includestr = include_str!("string_lit_as_bytes.rs").as_bytes();
31    |                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `include_bytes!(..)` instead: `include_bytes!("string_lit_as_bytes.rs")`
32
33 error: calling `as_bytes()` on a string literal
34   --> $DIR/string_lit_as_bytes.rs:27:13
35    |
36 LL |     let _ = "string with newline/t/n".as_bytes();
37    |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a byte string literal instead: `b"string with newline/t/n"`
38
39 error: aborting due to 6 previous errors
40