rust-clippy/tests/ui/crashes/ice-7012.rs

17 lines
214 B
Rust

#![allow(clippy::all)]
enum _MyOption {
None,
Some(()),
}
impl _MyOption {
fn _foo(&self) {
match self {
&Self::Some(_) => {},
_ => {},
}
}
}
fn main() {}