### What it does
Checks for `std::str::from_utf8_unchecked` with an invalid UTF-8 literal

### Why is this bad?
Creating such a `str` would result in undefined behavior

### Example
```
unsafe {
    std::str::from_utf8_unchecked(b"cl\x82ippy");
}
```