Merge pull request #3307 from alex/patch-1

Resolve nightly clippy warning in test_field_cfg
This commit is contained in:
David Hewitt 2023-07-11 18:39:05 +00:00 committed by GitHub
commit fda76a865a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -8,7 +8,12 @@ struct CfgClass {
#[cfg(any())] #[cfg(any())]
pub a: u32, pub a: u32,
#[pyo3(get, set)] #[pyo3(get, set)]
#[cfg(all())] // This is always true
#[cfg(any(
target_family = "unix",
target_family = "windows",
target_family = "wasm"
))]
pub b: u32, pub b: u32,
} }