2020-10-12 20:16:02 -04:00
|
|
|
error[E0658]: attributes on expressions are experimental
|
2021-06-27 02:22:46 -04:00
|
|
|
--> $DIR/arrays-completely-captured.rs:8:17
|
2020-10-12 20:16:02 -04:00
|
|
|
|
|
|
|
|
LL | let mut c = #[rustc_capture_analysis]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: see issue #15701 <https://github.com/rust-lang/rust/issues/15701> for more information
|
|
|
|
= help: add `#![feature(stmt_expr_attributes)]` to the crate attributes to enable
|
2024-01-10 01:39:02 -05:00
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2020-10-12 20:16:02 -04:00
|
|
|
|
2020-11-13 01:51:19 -05:00
|
|
|
error: First Pass analysis includes:
|
2024-01-10 01:39:02 -05:00
|
|
|
--> $DIR/arrays-completely-captured.rs:12:5
|
2020-11-13 01:51:19 -05:00
|
|
|
|
|
|
|
|
LL | / || {
|
|
|
|
LL | |
|
|
|
|
LL | |
|
|
|
|
LL | | m[0] += 10;
|
|
|
|
... |
|
2021-10-13 22:14:37 +01:00
|
|
|
LL | |
|
2020-11-13 01:51:19 -05:00
|
|
|
LL | | };
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
note: Capturing m[] -> MutBorrow
|
2024-01-10 01:39:02 -05:00
|
|
|
--> $DIR/arrays-completely-captured.rs:15:9
|
2020-10-27 23:41:52 -04:00
|
|
|
|
|
|
|
|
LL | m[0] += 10;
|
|
|
|
| ^
|
2021-10-13 22:14:37 +01:00
|
|
|
note: Capturing m[] -> MutBorrow
|
2024-01-10 01:39:02 -05:00
|
|
|
--> $DIR/arrays-completely-captured.rs:18:9
|
2021-10-13 22:14:37 +01:00
|
|
|
|
|
|
|
|
LL | m[1] += 40;
|
|
|
|
| ^
|
2020-10-27 23:41:52 -04:00
|
|
|
|
2020-11-13 01:51:19 -05:00
|
|
|
error: Min Capture analysis includes:
|
2024-01-10 01:39:02 -05:00
|
|
|
--> $DIR/arrays-completely-captured.rs:12:5
|
2020-11-13 01:51:19 -05:00
|
|
|
|
|
|
|
|
LL | / || {
|
|
|
|
LL | |
|
|
|
|
LL | |
|
|
|
|
LL | | m[0] += 10;
|
|
|
|
... |
|
2021-10-13 22:14:37 +01:00
|
|
|
LL | |
|
2020-11-13 01:51:19 -05:00
|
|
|
LL | | };
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
note: Min Capture m[] -> MutBorrow
|
2024-01-10 01:39:02 -05:00
|
|
|
--> $DIR/arrays-completely-captured.rs:15:9
|
2020-10-27 23:41:52 -04:00
|
|
|
|
|
|
|
|
LL | m[0] += 10;
|
|
|
|
| ^
|
|
|
|
|
2021-06-27 02:22:46 -04:00
|
|
|
error: aborting due to 3 previous errors
|
2020-10-12 20:16:02 -04:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0658`.
|