Temporarily ignore collection_is_never_read on FlattenSkipDeserializing

error: collection is never read
       --> test_suite/tests/test_gen.rs:723:25
        |
    723 |     #[derive(Serialize, Deserialize)]
        |                         ^^^^^^^^^^^
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#collection_is_never_read
    note: the lint level is defined here
       --> test_suite/tests/test_gen.rs:23:9
        |
    23  | #![deny(clippy::collection_is_never_read)]
        |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        = note: this error originates in the derive macro `Deserialize` (in Nightly builds, run with -Z macro-backtrace for more info)
This commit is contained in:
David Tolnay
2024-08-10 23:58:58 -07:00
parent fc55ac70d3
commit 536221b1f9
+8 -5
View File
@@ -720,11 +720,14 @@ fn test_gen() {
flat: StdOption<T>, flat: StdOption<T>,
} }
#[derive(Serialize, Deserialize)] #[allow(clippy::collection_is_never_read)] // FIXME
pub struct FlattenSkipDeserializing<T> { const _: () = {
#[serde(flatten, skip_deserializing)] #[derive(Serialize, Deserialize)]
flat: T, pub struct FlattenSkipDeserializing<T> {
} #[serde(flatten, skip_deserializing)]
flat: T,
}
};
#[derive(Serialize, Deserialize)] #[derive(Serialize, Deserialize)]
#[serde(untagged)] #[serde(untagged)]