]> git.lizzy.rs Git - rust.git/blob - tests/ui/crashes/ice-6139.rs
Auto merge of #6298 - JohnTitor:fix-example, r=llogiq
[rust.git] / tests / ui / crashes / ice-6139.rs
1 trait T<'a> {}
2
3 fn foo(_: Vec<Box<dyn T<'_>>>) {}
4
5 fn main() {
6     foo(vec![]);
7 }