rust-clippy/tests/ui/ref_patterns.rs

23 lines
388 B
Rust
Raw Normal View History

2023-05-08 11:20:33 +00:00
#![allow(unused)]
#![warn(clippy::ref_patterns)]
fn use_in_pattern() {
let opt = Some(5);
match opt {
None => {},
Some(ref opt) => {},
//~^ ERROR: usage of ref pattern
2023-05-08 11:20:33 +00:00
}
}
fn use_in_binding() {
let x = 5;
let ref y = x;
//~^ ERROR: usage of ref pattern
2023-05-08 11:20:33 +00:00
}
fn use_in_parameter(ref x: i32) {}
//~^ ERROR: usage of ref pattern
2023-05-08 11:20:33 +00:00
fn main() {}