Pick up changes to non_exhaustive_omitted_patterns lint

warning: the lint level must be set on the whole match
       --> src/edit.rs:106:9
        |
    105 |         #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))]
        |                                                ------------------------------- remove this attribute
    106 |         _ => None,
        |         ^
        |
        = help: it no longer has any effect to set the lint level on an individual match arm
    help: set the lint level on the whole match
        |
    63  +     #[deny(non_exhaustive_omitted_patterns)]
    64  |     match e {
        |
This commit is contained in:
David Tolnay 2024-01-03 18:03:03 -08:00
parent d864a1e9d8
commit a9de781ddb
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -61,6 +61,8 @@ fn remove_doc_attributes(attrs: &mut Vec<Attribute>) {
fn attrs_mut(e: &mut Expr) -> Option<&mut Vec<Attribute>> {
match e {
#![cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))]
Expr::Array(ExprArray { attrs, .. })
| Expr::Assign(ExprAssign { attrs, .. })
| Expr::Async(ExprAsync { attrs, .. })
@ -101,8 +103,6 @@ fn attrs_mut(e: &mut Expr) -> Option<&mut Vec<Attribute>> {
| Expr::Yield(ExprYield { attrs, .. }) => Some(attrs),
Expr::Verbatim(_) => None,
#[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))]
_ => None,
}
}