2021-03-06 20:47:53 -06:00
|
|
|
error[E0658]: attributes on expressions are experimental
|
2023-08-28 08:42:23 -05:00
|
|
|
--> $DIR/repr_packed.rs:14:17
|
2021-03-06 20:47:53 -06: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 00:39:02 -06:00
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2021-03-06 20:47:53 -06:00
|
|
|
|
|
|
|
error[E0658]: attributes on expressions are experimental
|
2024-01-10 00:39:02 -06:00
|
|
|
--> $DIR/repr_packed.rs:45:17
|
2021-03-06 20:47:53 -06: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 00:39:02 -06:00
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2021-03-06 20:47:53 -06:00
|
|
|
|
|
|
|
error[E0658]: attributes on expressions are experimental
|
2024-01-10 00:39:02 -06:00
|
|
|
--> $DIR/repr_packed.rs:81:13
|
2021-03-06 20:47:53 -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
|
2024-01-10 00:39:02 -06:00
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2021-03-06 20:47:53 -06:00
|
|
|
|
|
|
|
error: First Pass analysis includes:
|
2024-01-10 00:39:02 -06:00
|
|
|
--> $DIR/repr_packed.rs:18:5
|
2021-03-06 20:47:53 -06:00
|
|
|
|
|
|
|
|
LL | / || {
|
|
|
|
LL | |
|
|
|
|
LL | |
|
|
|
|
LL | | let z1: &u8 = &foo.x;
|
|
|
|
... |
|
|
|
|
LL | | println!("({}, {})", z1, z2);
|
|
|
|
LL | | };
|
|
|
|
| |_____^
|
|
|
|
|
|
2023-08-28 08:42:23 -05:00
|
|
|
note: Capturing foo[] -> ImmBorrow
|
2024-01-10 00:39:02 -06:00
|
|
|
--> $DIR/repr_packed.rs:21:24
|
2021-03-06 20:47:53 -06:00
|
|
|
|
|
|
|
|
LL | let z1: &u8 = &foo.x;
|
|
|
|
| ^^^^^
|
2023-08-28 08:42:23 -05:00
|
|
|
note: Capturing foo[] -> MutBorrow
|
2024-01-10 00:39:02 -06:00
|
|
|
--> $DIR/repr_packed.rs:23:32
|
2021-03-06 20:47:53 -06:00
|
|
|
|
|
|
|
|
LL | let z2: &mut u8 = &mut foo.y;
|
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
error: Min Capture analysis includes:
|
2024-01-10 00:39:02 -06:00
|
|
|
--> $DIR/repr_packed.rs:18:5
|
2021-03-06 20:47:53 -06:00
|
|
|
|
|
|
|
|
LL | / || {
|
|
|
|
LL | |
|
|
|
|
LL | |
|
|
|
|
LL | | let z1: &u8 = &foo.x;
|
|
|
|
... |
|
|
|
|
LL | | println!("({}, {})", z1, z2);
|
|
|
|
LL | | };
|
|
|
|
| |_____^
|
|
|
|
|
|
2023-08-28 08:42:23 -05:00
|
|
|
note: Min Capture foo[] -> MutBorrow
|
2024-01-10 00:39:02 -06:00
|
|
|
--> $DIR/repr_packed.rs:23:32
|
2021-03-06 20:47:53 -06:00
|
|
|
|
|
|
|
|
LL | let z2: &mut u8 = &mut foo.y;
|
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
error: First Pass analysis includes:
|
2024-01-10 00:39:02 -06:00
|
|
|
--> $DIR/repr_packed.rs:49:5
|
2021-03-06 20:47:53 -06:00
|
|
|
|
|
|
|
|
LL | / || {
|
|
|
|
LL | |
|
|
|
|
LL | |
|
|
|
|
LL | | let z1: &String = &foo.x;
|
|
|
|
... |
|
|
|
|
LL | | println!("({}, {})", z1, z2);
|
|
|
|
LL | | };
|
|
|
|
| |_____^
|
|
|
|
|
|
2021-10-13 16:14:37 -05:00
|
|
|
note: Capturing foo[] -> ImmBorrow
|
2024-01-10 00:39:02 -06:00
|
|
|
--> $DIR/repr_packed.rs:52:28
|
2021-10-13 16:14:37 -05:00
|
|
|
|
|
|
|
|
LL | let z1: &String = &foo.x;
|
|
|
|
| ^^^^^
|
2021-03-06 20:47:53 -06:00
|
|
|
note: Capturing foo[] -> MutBorrow
|
2024-01-10 00:39:02 -06:00
|
|
|
--> $DIR/repr_packed.rs:54:33
|
2021-03-06 20:47:53 -06:00
|
|
|
|
|
|
|
|
LL | let z2: &mut u16 = &mut foo.y;
|
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
error: Min Capture analysis includes:
|
2024-01-10 00:39:02 -06:00
|
|
|
--> $DIR/repr_packed.rs:49:5
|
2021-03-06 20:47:53 -06:00
|
|
|
|
|
|
|
|
LL | / || {
|
|
|
|
LL | |
|
|
|
|
LL | |
|
|
|
|
LL | | let z1: &String = &foo.x;
|
|
|
|
... |
|
|
|
|
LL | | println!("({}, {})", z1, z2);
|
|
|
|
LL | | };
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
note: Min Capture foo[] -> MutBorrow
|
2024-01-10 00:39:02 -06:00
|
|
|
--> $DIR/repr_packed.rs:54:33
|
2021-03-06 20:47:53 -06:00
|
|
|
|
|
|
|
|
LL | let z2: &mut u16 = &mut foo.y;
|
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
error: First Pass analysis includes:
|
2024-01-10 00:39:02 -06:00
|
|
|
--> $DIR/repr_packed.rs:85:5
|
2021-03-06 20:47:53 -06:00
|
|
|
|
|
|
|
|
LL | / || {
|
|
|
|
LL | |
|
|
|
|
LL | |
|
|
|
|
LL | | println!("{}", foo.x);
|
|
|
|
... |
|
|
|
|
LL | |
|
|
|
|
LL | | };
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
note: Capturing foo[] -> ImmBorrow
|
2024-01-10 00:39:02 -06:00
|
|
|
--> $DIR/repr_packed.rs:88:24
|
2021-03-06 20:47:53 -06:00
|
|
|
|
|
|
|
|
LL | println!("{}", foo.x);
|
|
|
|
| ^^^^^
|
|
|
|
note: Capturing foo[(0, 0)] -> ByValue
|
2024-01-10 00:39:02 -06:00
|
|
|
--> $DIR/repr_packed.rs:92:18
|
2021-03-06 20:47:53 -06:00
|
|
|
|
|
|
|
|
LL | let _z = foo.x;
|
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
error: Min Capture analysis includes:
|
2024-01-10 00:39:02 -06:00
|
|
|
--> $DIR/repr_packed.rs:85:5
|
2021-03-06 20:47:53 -06:00
|
|
|
|
|
|
|
|
LL | / || {
|
|
|
|
LL | |
|
|
|
|
LL | |
|
|
|
|
LL | | println!("{}", foo.x);
|
|
|
|
... |
|
|
|
|
LL | |
|
|
|
|
LL | | };
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
note: Min Capture foo[] -> ByValue
|
2024-01-10 00:39:02 -06:00
|
|
|
--> $DIR/repr_packed.rs:88:24
|
2021-03-06 20:47:53 -06:00
|
|
|
|
|
|
|
|
LL | println!("{}", foo.x);
|
|
|
|
| ^^^^^ foo[] used here
|
|
|
|
...
|
|
|
|
LL | let _z = foo.x;
|
|
|
|
| ^^^^^ foo[] captured as ByValue here
|
|
|
|
|
2021-06-27 01:22:46 -05:00
|
|
|
error: aborting due to 9 previous errors
|
2021-03-06 20:47:53 -06:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0658`.
|