mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-21 22:37:07 +00:00
7 lines
108 B
Rust
7 lines
108 B
Rust
fn foo<F: FnMut()>() {
|
|
let _: Box<F> = Box::new(|| ());
|
|
//~^ ERROR mismatched types
|
|
}
|
|
|
|
fn main() {}
|