mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
10 lines
185 B
Rust
10 lines
185 B
Rust
// check-pass
|
|
|
|
fn cb<'a,T>(_x: Box<dyn Fn((&'a i32, &'a (Vec<&'static i32>, bool))) -> T>) -> T {
|
|
panic!()
|
|
}
|
|
|
|
fn main() {
|
|
cb(Box::new(|(k, &(ref v, b))| (*k, v.clone(), b)));
|
|
}
|