mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
16 lines
362 B
Rust
16 lines
362 B
Rust
//@ check-pass
|
|
#![allow(unused_variables)]
|
|
use std::collections::HashMap;
|
|
use std::collections::hash_map::Entry::Vacant;
|
|
|
|
pub fn foo() {
|
|
type F = Box<dyn Fn(&()) + 'static>;
|
|
let mut map: HashMap<(), F> = HashMap::new();
|
|
let x: &mut F = match map.entry(()) {
|
|
Vacant(_) => unimplemented!(),
|
|
_ => unimplemented!()
|
|
};
|
|
}
|
|
|
|
fn main() {}
|