]> git.lizzy.rs Git - rust.git/blob - tests/ui/closures/2229_closure_analysis/multilevel-path-1.stderr
Rollup merge of #107524 - cjgillot:both-storage, r=RalfJung
[rust.git] / tests / ui / closures / 2229_closure_analysis / multilevel-path-1.stderr
1 error[E0658]: attributes on expressions are experimental
2   --> $DIR/multilevel-path-1.rs:22:13
3    |
4 LL |     let c = #[rustc_capture_analysis]
5    |             ^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: see issue #15701 <https://github.com/rust-lang/rust/issues/15701> for more information
8    = help: add `#![feature(stmt_expr_attributes)]` to the crate attributes to enable
9
10 error: First Pass analysis includes:
11   --> $DIR/multilevel-path-1.rs:25:5
12    |
13 LL | /     || {
14 LL | |
15 LL | |
16 LL | |         let wp = &w.p;
17 ...  |
18 LL | |         println!("{}", wp.x);
19 LL | |     };
20    | |_____^
21    |
22 note: Capturing w[(0, 0)] -> ImmBorrow
23   --> $DIR/multilevel-path-1.rs:28:19
24    |
25 LL |         let wp = &w.p;
26    |                   ^^^
27
28 error: Min Capture analysis includes:
29   --> $DIR/multilevel-path-1.rs:25:5
30    |
31 LL | /     || {
32 LL | |
33 LL | |
34 LL | |         let wp = &w.p;
35 ...  |
36 LL | |         println!("{}", wp.x);
37 LL | |     };
38    | |_____^
39    |
40 note: Min Capture w[(0, 0)] -> ImmBorrow
41   --> $DIR/multilevel-path-1.rs:28:19
42    |
43 LL |         let wp = &w.p;
44    |                   ^^^
45
46 error: aborting due to 3 previous errors
47
48 For more information about this error, try `rustc --explain E0658`.