Sign in
◑
Theme
rust
/
rust
/
3fd2d64dc4e47b9a4ae9e9ac7fa430ffe6a24d19
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
string_from_utf8_as_bytes.rs
blob: 49beb19ee40fc346557985cd39981f4fb85102bf [
file
]
#![
warn
(
clippy
::
string_from_utf8_as_bytes
)]
fn
main
()
{
let
_
=
std
::
str
::
from_utf8
(&
"Hello World!"
.
as_bytes
()[
6.
.
11
]);
//~^ string_from_utf8_as_bytes
}