about summary refs log tree commit diff
path: root/tests/ui/mir/sized-slice-predicate-116721.rs
blob: c6a0aca2da80d658558e61c61a5226a40ced11b5 (plain)
1
2
3
4
5
6
7
8
9
10
//@ build-pass
//@ compile-flags: -Zmir-opt-level=3 --emit=mir

fn hey<T>(it: &[T])
where
    [T]: Clone,
{
}

fn main() {}