mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 15:32:06 +00:00
16 lines
249 B
Rust
16 lines
249 B
Rust
// check-pass
|
|
// edition:2021
|
|
#![deny(rust_2021_compatibility)]
|
|
|
|
pub struct Warns {
|
|
// `Arc` has significant drop
|
|
_significant_drop: std::sync::Arc<()>,
|
|
field: String,
|
|
}
|
|
|
|
pub fn test(w: Warns) {
|
|
_ = || drop(w.field);
|
|
}
|
|
|
|
fn main() {}
|