blob: ab3519fe7147b6dcce5687152ac61daccd646b06 [file] [log] [blame]
//@ run-pass
#![allow(dead_code)]
type Connection = Box<dyn FnMut(Vec<u8>) + 'static>;
fn f() -> Option<Connection> {
let mock_connection: Connection = Box::new(|_| {});
Some(mock_connection)
}
pub fn main() {
}