]> git.proxmox.com Git - rustc.git/blob - tests/ui/lint/large_assignments/box_rc_arc_allowed.stderr
New upstream version 1.74.1+dfsg1
[rustc.git] / tests / ui / lint / large_assignments / box_rc_arc_allowed.stderr
1 error: moving 9999 bytes
2 --> $DIR/box_rc_arc_allowed.rs:16:13
3 |
4 LL | let _ = NotBox::new([0; 9999]);
5 | ^^^^^^^^^^^^^^^^^^^^^^ value moved from here
6 |
7 = note: The current maximum size is 1000, but it can be customized with the move_size_limit attribute: `#![move_size_limit = "..."]`
8 note: the lint level is defined here
9 --> $DIR/box_rc_arc_allowed.rs:1:9
10 |
11 LL | #![deny(large_assignments)]
12 | ^^^^^^^^^^^^^^^^^
13
14 error: moving 9999 bytes
15 --> $DIR/box_rc_arc_allowed.rs:26:13
16 |
17 LL | data,
18 | ^^^^ value moved from here
19 |
20 = note: The current maximum size is 1000, but it can be customized with the move_size_limit attribute: `#![move_size_limit = "..."]`
21
22 error: aborting due to 2 previous errors
23