summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/crashes/auxiliary/ice-4727-aux.rs
blob: 58a20caf6c67634694e7c85714579f2a60711c54 (plain)
1
2
3
4
5
6
7
8
9
pub trait Trait {
    fn fun(par: &str) -> &str;
}

impl Trait for str {
    fn fun(par: &str) -> &str {
        &par[0..1]
    }
}