@@ -28,12 +28,60 @@ LL | let _ = NotBox::new([0; 9999]);
2828 = note: The current maximum size is 1000, but it can be customized with the move_size_limit attribute: `#![move_size_limit = "..."]`
2929
3030error: moving 9999 bytes
31+ --> $DIR/large_moves.rs:63:13
32+ |
33+ LL | data,
34+ | ^^^^ value moved from here
35+ |
36+ = note: The current maximum size is 1000, but it can be customized with the move_size_limit attribute: `#![move_size_limit = "..."]`
37+
38+ error: moving 1500 bytes
39+ --> $DIR/large_moves.rs:37:13
40+ |
41+ LL | let _ = NotBox::new([0; 1500]);
42+ | ^^^^^^^^^^^^^^^^^^^^^^ value moved from here
43+ |
44+ = note: The current maximum size is 1000, but it can be customized with the move_size_limit attribute: `#![move_size_limit = "..."]`
45+
46+ error: moving 2500 bytes
3147 --> $DIR/large_moves.rs:41:13
3248 |
49+ LL | let _ = NotBox::new([0; 2500]);
50+ | ^^^^^^^^^^^^^^^^^^^^^^ value moved from here
51+ |
52+ = note: The current maximum size is 1000, but it can be customized with the move_size_limit attribute: `#![move_size_limit = "..."]`
53+
54+ error: moving 5000 bytes
55+ --> $DIR/large_moves.rs:47:13
56+ |
57+ LL | let _ = NotBox::new([0; 5000]);
58+ | ^^^^^^^^^^^^^^^^^^^^^^ value moved from here
59+ |
60+ = note: The current maximum size is 1000, but it can be customized with the move_size_limit attribute: `#![move_size_limit = "..."]`
61+
62+ error: moving 1500 bytes
63+ --> $DIR/large_moves.rs:63:13
64+ |
65+ LL | data,
66+ | ^^^^ value moved from here
67+ |
68+ = note: The current maximum size is 1000, but it can be customized with the move_size_limit attribute: `#![move_size_limit = "..."]`
69+
70+ error: moving 2500 bytes
71+ --> $DIR/large_moves.rs:63:13
72+ |
73+ LL | data,
74+ | ^^^^ value moved from here
75+ |
76+ = note: The current maximum size is 1000, but it can be customized with the move_size_limit attribute: `#![move_size_limit = "..."]`
77+
78+ error: moving 5000 bytes
79+ --> $DIR/large_moves.rs:63:13
80+ |
3381LL | data,
3482 | ^^^^ value moved from here
3583 |
3684 = note: The current maximum size is 1000, but it can be customized with the move_size_limit attribute: `#![move_size_limit = "..."]`
3785
38- error: aborting due to 4 previous errors
86+ error: aborting due to 10 previous errors
3987
0 commit comments