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

fn main() {
    let _ = Some(&"Hello World!"[6..11]);
}