rust-clippy/tests/ui/unneeded_wildcard_pattern.rs

54 lines
1.2 KiB
Rust
Raw Normal View History

//@aux-build:proc_macros.rs
2019-09-12 06:25:05 +00:00
#![feature(stmt_expr_attributes)]
#![deny(clippy::unneeded_wildcard_pattern)]
2023-06-10 11:43:30 +00:00
#![allow(clippy::needless_if)]
2019-09-12 06:25:05 +00:00
2023-06-23 03:01:17 +00:00
#[macro_use]
extern crate proc_macros;
2019-09-12 06:25:05 +00:00
fn main() {
let t = (0, 1, 2, 3);
if let (0, .., _) = t {};
if let (0, _, ..) = t {};
if let (_, .., 0) = t {};
if let (.., _, 0) = t {};
2019-09-12 06:25:05 +00:00
if let (0, _, _, ..) = t {};
if let (0, .., _, _) = t {};
if let (_, 0, ..) = t {};
if let (.., 0, _) = t {};
if let (0, _, _, _) = t {};
if let (0, ..) = t {};
if let (.., 0) = t {};
#[rustfmt::skip]
{
if let (0, .., _, _,) = t {};
}
struct S(usize, usize, usize, usize);
let s = S(0, 1, 2, 3);
if let S(0, .., _) = s {};
if let S(0, _, ..) = s {};
if let S(_, .., 0) = s {};
if let S(.., _, 0) = s {};
2019-09-12 06:25:05 +00:00
if let S(0, _, _, ..) = s {};
if let S(0, .., _, _) = s {};
if let S(_, 0, ..) = s {};
if let S(.., 0, _) = s {};
if let S(0, _, _, _) = s {};
if let S(0, ..) = s {};
if let S(.., 0) = s {};
#[rustfmt::skip]
{
if let S(0, .., _, _,) = s {};
}
2023-06-23 03:01:17 +00:00
external! {
let t = (0, 1, 2, 3);
if let (0, _, ..) = t {};
}
2019-09-12 06:25:05 +00:00
}