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

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