]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/string_from_utf8_as_bytes.fixed
Merge commit '4911ab124c481430672a3833b37075e6435ec34d' into clippyup
[rust.git] / src / tools / clippy / tests / ui / string_from_utf8_as_bytes.fixed
1 // run-rustfix
2 #![warn(clippy::string_from_utf8_as_bytes)]
3
4 fn main() {
5     let _ = Some(&"Hello World!"[6..11]);
6 }