summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/string_slice.rs
blob: be4dfc8816c7f178091a88305c3fa162ee261a78 (plain)
1
2
3
4
5
6
7
8
9
10
#[warn(clippy::string_slice)]
#[allow(clippy::no_effect)]

fn main() {
    &"Ölkanne"[1..];
    let m = "Mötörhead";
    &m[2..5];
    let s = String::from(m);
    &s[0..2];
}