rust/tests/ui/mir/sized-slice-predicate-116721.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
124 B
Rust
Raw Permalink Normal View History

2024-06-27 04:39:37 -05:00
//@ build-pass
2024-04-19 15:23:17 -05:00
//@ compile-flags: -Zmir-opt-level=3 --emit=mir
2024-06-27 04:39:37 -05:00
2024-04-19 15:23:17 -05:00
fn hey<T>(it: &[T])
where
[T]: Clone,
{
}
fn main() {}