summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/string_from_utf8_as_bytes.rs
blob: 670d206d3679c17cf6fded4040e49e83b2b2f736 (plain)
1
2
3
4
5
6
// run-rustfix
#![warn(clippy::string_from_utf8_as_bytes)]

fn main() {
    let _ = std::str::from_utf8(&"Hello World!".as_bytes()[6..11]);
}