blob: 9cf53973d870a4154f82e73ca1d04ab2d89c6208 [file] [log] [blame]
// build-pass (FIXME(62277): could be check-pass?)
mod my_mod {
#[derive(Clone, Copy, Eq, PartialEq, PartialOrd, Ord, Hash)]
pub struct Name<'a> {
source: &'a str,
}
pub const JSON: Name = Name { source: "JSON" };
}
pub fn crash() -> bool {
match (my_mod::JSON, None) {
(_, Some(my_mod::JSON)) => true,
(my_mod::JSON, None) => true,
_ => false,
}
}
fn main() {}