mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-16 08:53:35 +00:00
17 lines
251 B
Rust
17 lines
251 B
Rust
#![feature(tool_lints)]
|
|
|
|
#![allow(unused)]
|
|
#![warn(clippy::all)]
|
|
|
|
fn main() {
|
|
let v = Some(true);
|
|
match v {
|
|
Some(x) => (),
|
|
y @ _ => (),
|
|
}
|
|
match v {
|
|
Some(x) => (),
|
|
y @ None => (), // no error
|
|
}
|
|
}
|