]> git.lizzy.rs Git - rust.git/blob - tests/ui/closures/2229_closure_analysis/issue-87378.stderr
Rollup merge of #106692 - eggyal:mv-binary_heap.rs-binary_heap/mod.rs, r=Mark-Simulacrum
[rust.git] / tests / ui / closures / 2229_closure_analysis / issue-87378.stderr
1 error[E0658]: attributes on expressions are experimental
2   --> $DIR/issue-87378.rs:14: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/issue-87378.rs:17:5
12    |
13 LL | /     || {
14 LL | |
15 LL | |
16 LL | |        unsafe { u.value }
17 LL | |
18 LL | |
19 LL | |     };
20    | |_____^
21    |
22 note: Capturing u[(0, 0)] -> ImmBorrow
23   --> $DIR/issue-87378.rs:20:17
24    |
25 LL |        unsafe { u.value }
26    |                 ^^^^^^^
27
28 error: Min Capture analysis includes:
29   --> $DIR/issue-87378.rs:17:5
30    |
31 LL | /     || {
32 LL | |
33 LL | |
34 LL | |        unsafe { u.value }
35 LL | |
36 LL | |
37 LL | |     };
38    | |_____^
39    |
40 note: Min Capture u[] -> ImmBorrow
41   --> $DIR/issue-87378.rs:20:17
42    |
43 LL |        unsafe { u.value }
44    |                 ^^^^^^^
45
46 error: aborting due to 3 previous errors
47
48 For more information about this error, try `rustc --explain E0658`.