blob: f1552c5a7f960eee9a250644d667ce3b37572b4c [file] [log] [blame]
pub enum Empty {}
#[no_mangle]
pub fn is_none(opt: Option<Empty>) -> bool {
match opt {
None => true,
}
}