summaryrefslogtreecommitdiff
path: root/src/tools/clippy/tests/ui/string_lit_as_bytes.stderr
blob: 61b4e210e0fb94d6c0173faf863016639a8b0733 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
error: calling `as_bytes()` on a string literal
  --> $DIR/string_lit_as_bytes.rs:17: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:19:14
   |
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 " ""###`

error: calling `into_bytes()` on a string literal
  --> $DIR/string_lit_as_bytes.rs:21:14
   |
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
  --> $DIR/string_lit_as_bytes.rs:22:14
   |
LL |     let bs = "lit to owned".to_owned().into_bytes();
   |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a byte string literal instead: `b"lit to owned".to_vec()`

error: calling `as_bytes()` on a string literal
  --> $DIR/string_lit_as_bytes.rs:12:26
   |
LL |         const B: &[u8] = $b.as_bytes();
   |                          ^^^^^^^^^^^^^ help: consider using a byte string literal instead: `b"warning"`
...
LL |     b!("warning");
   |     ------------- in this macro invocation
   |
   = note: this error originates in the macro `b` (in Nightly builds, run with -Z macro-backtrace for more info)

error: calling `as_bytes()` on `include_str!(..)`
  --> $DIR/string_lit_as_bytes.rs:39:22
   |
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")`

error: calling `as_bytes()` on a string literal
  --> $DIR/string_lit_as_bytes.rs:41:13
   |
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 7 previous errors