rust/tests/ui/uninit_vec.stderr

79 lines
2.6 KiB
Plaintext
Raw Normal View History

2021-09-17 06:55:26 +00:00
error: calling `set_len()` immediately after reserving a buffer creates uninitialized values
2021-09-20 19:32:53 +00:00
--> $DIR/uninit_vec.rs:12:5
2021-09-17 06:55:26 +00:00
|
2021-09-20 19:32:53 +00:00
LL | let mut vec: Vec<u8> = Vec::with_capacity(1000);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
LL | unsafe {
2021-09-17 06:55:26 +00:00
LL | vec.set_len(200);
| ^^^^^^^^^^^^^^^^
|
= note: `-D clippy::uninit-vec` implied by `-D warnings`
2021-09-20 19:32:53 +00:00
= help: initialize the buffer or wrap the content in `MaybeUninit`
2021-09-17 06:55:26 +00:00
error: calling `set_len()` immediately after reserving a buffer creates uninitialized values
2021-09-20 19:32:53 +00:00
--> $DIR/uninit_vec.rs:18:5
2021-09-17 06:55:26 +00:00
|
2021-09-20 19:32:53 +00:00
LL | vec.reserve(1000);
| ^^^^^^^^^^^^^^^^^^
LL | unsafe {
2021-09-17 06:55:26 +00:00
LL | vec.set_len(200);
| ^^^^^^^^^^^^^^^^
|
2021-09-20 19:32:53 +00:00
= help: initialize the buffer or wrap the content in `MaybeUninit`
2021-09-17 06:55:26 +00:00
error: calling `set_len()` immediately after reserving a buffer creates uninitialized values
2021-09-20 19:32:53 +00:00
--> $DIR/uninit_vec.rs:32:5
2021-09-17 06:55:26 +00:00
|
2021-09-20 19:32:53 +00:00
LL | let mut vec: Vec<u8> = Vec::with_capacity(1000);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
...
2021-09-17 06:55:26 +00:00
LL | vec.set_len(200);
| ^^^^^^^^^^^^^^^^
|
2021-09-20 19:32:53 +00:00
= help: initialize the buffer or wrap the content in `MaybeUninit`
error: calling `set_len()` immediately after reserving a buffer creates uninitialized values
--> $DIR/uninit_vec.rs:41:5
|
LL | my_vec.vec.reserve(1000);
| ^^^^^^^^^^^^^^^^^^^^^^^^^
LL | unsafe {
LL | my_vec.vec.set_len(200);
| ^^^^^^^^^^^^^^^^^^^^^^^
2021-09-17 06:55:26 +00:00
|
2021-09-20 19:32:53 +00:00
= help: initialize the buffer or wrap the content in `MaybeUninit`
error: calling `set_len()` immediately after reserving a buffer creates uninitialized values
--> $DIR/uninit_vec.rs:46:5
|
LL | my_vec.vec = Vec::with_capacity(1000);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
LL | unsafe {
LL | my_vec.vec.set_len(200);
| ^^^^^^^^^^^^^^^^^^^^^^^
|
= help: initialize the buffer or wrap the content in `MaybeUninit`
2021-09-17 06:55:26 +00:00
error: calling `set_len()` immediately after reserving a buffer creates uninitialized values
2021-09-20 19:32:53 +00:00
--> $DIR/uninit_vec.rs:25:9
2021-09-17 06:55:26 +00:00
|
2021-09-20 19:32:53 +00:00
LL | let mut vec: Vec<u8> = Vec::with_capacity(1000);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2021-09-17 06:55:26 +00:00
LL | vec.set_len(200);
| ^^^^^^^^^^^^^^^^
|
2021-09-20 19:32:53 +00:00
= help: initialize the buffer or wrap the content in `MaybeUninit`
error: calling `set_len()` immediately after reserving a buffer creates uninitialized values
--> $DIR/uninit_vec.rs:28:9
2021-09-17 06:55:26 +00:00
|
LL | vec.reserve(1000);
| ^^^^^^^^^^^^^^^^^^
2021-09-20 19:32:53 +00:00
LL | vec.set_len(200);
| ^^^^^^^^^^^^^^^^
|
= help: initialize the buffer or wrap the content in `MaybeUninit`
2021-09-17 06:55:26 +00:00
2021-09-20 19:32:53 +00:00
error: aborting due to 7 previous errors
2021-09-17 06:55:26 +00:00