2023-08-24 14:32:12 -05:00
|
|
|
//@aux-build:proc_macros.rs
|
2019-09-05 08:45:52 -05:00
|
|
|
#![warn(clippy::all)]
|
2022-10-06 02:44:38 -05:00
|
|
|
#![allow(unused)]
|
2024-08-08 12:13:50 -05:00
|
|
|
#![allow(clippy::uninlined_format_args, clippy::single_match)]
|
2019-09-05 08:45:52 -05:00
|
|
|
|
2023-07-02 07:35:19 -05:00
|
|
|
#[macro_use]
|
|
|
|
extern crate proc_macros;
|
|
|
|
|
2019-09-05 08:45:52 -05:00
|
|
|
fn main() {
|
|
|
|
let v = Some(true);
|
|
|
|
let s = [0, 1, 2, 3, 4];
|
|
|
|
match v {
|
|
|
|
Some(x) => (),
|
|
|
|
y => (),
|
|
|
|
}
|
|
|
|
match v {
|
|
|
|
Some(x) => (),
|
|
|
|
y @ None => (), // no error
|
|
|
|
}
|
|
|
|
match s {
|
|
|
|
[x, inside @ .., y] => (), // no error
|
|
|
|
[..] => (),
|
|
|
|
}
|
2020-03-08 04:00:23 -05:00
|
|
|
|
|
|
|
let mut mutv = vec![1, 2, 3];
|
|
|
|
|
|
|
|
// required "ref" left out in suggestion: #5271
|
|
|
|
match mutv {
|
|
|
|
ref mut x => {
|
|
|
|
x.push(4);
|
|
|
|
println!("vec: {:?}", x);
|
|
|
|
},
|
|
|
|
ref y if y == &vec![0] => (),
|
|
|
|
}
|
|
|
|
|
|
|
|
match mutv {
|
|
|
|
ref x => println!("vec: {:?}", x),
|
|
|
|
ref y if y == &vec![0] => (),
|
|
|
|
}
|
2023-07-02 07:35:19 -05:00
|
|
|
external! {
|
|
|
|
let v = Some(true);
|
|
|
|
match v {
|
|
|
|
Some(x) => (),
|
|
|
|
y @ _ => (),
|
|
|
|
}
|
|
|
|
}
|
2019-09-05 08:45:52 -05:00
|
|
|
}
|