2021-01-26 16:39:30 -06:00
|
|
|
error[E0658]: attributes on expressions are experimental
|
2021-06-27 01:22:46 -05:00
|
|
|
--> $DIR/capture-analysis-3.rs:19:13
|
2021-01-26 16:39:30 -06:00
|
|
|
|
|
|
|
|
LL | let 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
|
|
|
|
|
|
|
|
error: First Pass analysis includes:
|
2021-06-27 01:22:46 -05:00
|
|
|
--> $DIR/capture-analysis-3.rs:22:5
|
2021-01-26 16:39:30 -06:00
|
|
|
|
|
|
|
|
LL | / || {
|
|
|
|
LL | |
|
|
|
|
LL | |
|
|
|
|
LL | | let _x = a.b.c;
|
|
|
|
... |
|
|
|
|
LL | |
|
|
|
|
LL | | };
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
note: Capturing a[(0, 0),(0, 0)] -> ByValue
|
2021-06-27 01:22:46 -05:00
|
|
|
--> $DIR/capture-analysis-3.rs:25:18
|
2021-01-26 16:39:30 -06:00
|
|
|
|
|
|
|
|
LL | let _x = a.b.c;
|
|
|
|
| ^^^^^
|
|
|
|
note: Capturing a[(0, 0)] -> ImmBorrow
|
2021-06-27 01:22:46 -05:00
|
|
|
--> $DIR/capture-analysis-3.rs:28:26
|
2021-01-26 16:39:30 -06:00
|
|
|
|
|
|
|
|
LL | println!("{:?}", a.b);
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
error: Min Capture analysis includes:
|
2021-06-27 01:22:46 -05:00
|
|
|
--> $DIR/capture-analysis-3.rs:22:5
|
2021-01-26 16:39:30 -06:00
|
|
|
|
|
|
|
|
LL | / || {
|
|
|
|
LL | |
|
|
|
|
LL | |
|
|
|
|
LL | | let _x = a.b.c;
|
|
|
|
... |
|
|
|
|
LL | |
|
|
|
|
LL | | };
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
note: Min Capture a[(0, 0)] -> ByValue
|
2021-06-27 01:22:46 -05:00
|
|
|
--> $DIR/capture-analysis-3.rs:25:18
|
2021-01-26 16:39:30 -06:00
|
|
|
|
|
|
|
|
LL | let _x = a.b.c;
|
|
|
|
| ^^^^^ a[(0, 0)] captured as ByValue here
|
|
|
|
...
|
|
|
|
LL | println!("{:?}", a.b);
|
|
|
|
| ^^^ a[(0, 0)] used here
|
|
|
|
|
2021-06-27 01:22:46 -05:00
|
|
|
error: aborting due to 3 previous errors
|
2021-01-26 16:39:30 -06:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0658`.
|