2021-08-12 04:58:04 -05:00
|
|
|
error: changes to closure capture in Rust 2021 will affect drop order
|
2021-09-21 03:05:11 -05:00
|
|
|
--> $DIR/macro.rs:19:13
|
2021-08-12 04:58:04 -05:00
|
|
|
|
|
|
|
|
LL | let _ = || dbg!(a.0);
|
2022-06-27 00:45:35 -05:00
|
|
|
| ^^ --- in Rust 2018, this closure captures all of `a`, but in Rust 2021, it will only capture `a.0`
|
2021-08-12 04:58:04 -05:00
|
|
|
...
|
|
|
|
LL | }
|
2021-08-12 14:13:00 -05:00
|
|
|
| - in Rust 2018, `a` is dropped here, but in Rust 2021, only `a.0` will be dropped here as part of the closure
|
2021-08-12 04:58:04 -05:00
|
|
|
|
|
2022-09-18 10:55:36 -05:00
|
|
|
= note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/disjoint-capture-in-closures.html>
|
2021-08-12 04:58:04 -05:00
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/macro.rs:5:9
|
|
|
|
|
|
|
|
|
LL | #![deny(rust_2021_incompatible_closure_captures)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
help: add a dummy let to cause `a` to be fully captured
|
|
|
|
|
|
|
|
|
LL | let _ = || { let _ = &a; dbg!(a.0) };
|
2021-08-12 05:17:35 -05:00
|
|
|
| +++++++++++++ +
|
2021-08-12 04:58:04 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|