2021-03-26 13:39:04 +00:00
|
|
|
error: moving 10024 bytes
|
2022-11-24 16:58:32 +00:00
|
|
|
--> $DIR/large_moves.rs:19:14
|
2021-03-26 13:39:04 +00:00
|
|
|
|
|
2022-11-24 16:58:32 +00:00
|
|
|
LL | let z = (x, 42);
|
|
|
|
| ^ value moved from here
|
2021-03-26 13:39:04 +00:00
|
|
|
|
|
2022-09-18 15:55:36 +00:00
|
|
|
= note: The current maximum size is 1000, but it can be customized with the move_size_limit attribute: `#![move_size_limit = "..."]`
|
2021-03-26 13:39:04 +00:00
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/large_moves.rs:1:9
|
|
|
|
|
|
|
|
|
LL | #![deny(large_assignments)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: moving 10024 bytes
|
2022-04-24 21:34:24 +00:00
|
|
|
--> $DIR/large_moves.rs:19:13
|
2021-03-26 13:39:04 +00:00
|
|
|
|
|
|
|
|
LL | let z = (x, 42);
|
|
|
|
| ^^^^^^^ value moved from here
|
2022-03-30 15:53:29 +00:00
|
|
|
|
|
|
|
|
= note: The current maximum size is 1000, but it can be customized with the move_size_limit attribute: `#![move_size_limit = "..."]`
|
2021-03-26 13:39:04 +00:00
|
|
|
|
|
|
|
error: moving 10024 bytes
|
2022-04-24 21:34:24 +00:00
|
|
|
--> $DIR/large_moves.rs:21:13
|
2021-03-26 13:39:04 +00:00
|
|
|
|
|
|
|
|
LL | let a = z.0;
|
|
|
|
| ^^^ value moved from here
|
2022-03-30 15:53:29 +00:00
|
|
|
|
|
|
|
|
= note: The current maximum size is 1000, but it can be customized with the move_size_limit attribute: `#![move_size_limit = "..."]`
|
2021-03-26 13:39:04 +00:00
|
|
|
|
2022-11-24 16:58:32 +00:00
|
|
|
error: aborting due to 3 previous errors
|
2021-03-26 13:39:04 +00:00
|
|
|
|