mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-01 19:23:50 +00:00
17 lines
260 B
Rust
17 lines
260 B
Rust
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
#![allow(unused)]
|
|
#![deny(clippy)]
|
|
|
|
fn main() {
|
|
let v = Some(true);
|
|
match v {
|
|
Some(x) => (),
|
|
y @ _ => (),
|
|
}
|
|
match v {
|
|
Some(x) => (),
|
|
y @ None => (), // no error
|
|
}
|
|
}
|