summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/invalid_utf8_in_unchecked.stderr
blob: c89cd2758ee9fe407fb359ed45f6232082fd400b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
error: non UTF-8 literal in `std::str::from_utf8_unchecked`
  --> $DIR/invalid_utf8_in_unchecked.rs:16:9
   |
LL |         std::str::from_utf8_unchecked(&[99, 108, 130, 105, 112, 112, 121]);
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `-D clippy::invalid-utf8-in-unchecked` implied by `-D warnings`

error: non UTF-8 literal in `std::str::from_utf8_unchecked`
  --> $DIR/invalid_utf8_in_unchecked.rs:17:9
   |
LL |         std::str::from_utf8_unchecked(&[b'c', b'l', b'/x82', b'i', b'p', b'p', b'y']);
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: non UTF-8 literal in `std::str::from_utf8_unchecked`
  --> $DIR/invalid_utf8_in_unchecked.rs:18:9
   |
LL |         std::str::from_utf8_unchecked(b"cl/x82ippy");
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to 3 previous errors