2
0
Fork 0
mirror of https://github.com/rust-lang/rust-clippy synced 2025-03-02 06:17:31 +00:00
rust-clippy/tests/ui/crashes/ice-6139.rs
2020-10-09 22:21:47 +02:00

7 lines
82 B
Rust

trait T<'a> {}
fn foo(_: Vec<Box<dyn T<'_>>>) {}
fn main() {
foo(vec![]);
}