@@ -425,8 +425,41 @@ LL | let _val: i32 = mem::uninitialized();
425
425
|
426
426
= note: integers must not be uninitialized
427
427
428
+ error: the type `f32` does not permit being left uninitialized
429
+ --> $DIR/uninitialized-zeroed.rs:107:25
430
+ |
431
+ LL | let _val: f32 = mem::uninitialized();
432
+ | ^^^^^^^^^^^^^^^^^^^^
433
+ | |
434
+ | this code causes undefined behavior when executed
435
+ | help: use `MaybeUninit<T>` instead, and only call `assume_init` after initialization is done
436
+ |
437
+ = note: floats must not be uninitialized
438
+
439
+ error: the type `*const ()` does not permit being left uninitialized
440
+ --> $DIR/uninitialized-zeroed.rs:110:31
441
+ |
442
+ LL | let _val: *const () = mem::uninitialized();
443
+ | ^^^^^^^^^^^^^^^^^^^^
444
+ | |
445
+ | this code causes undefined behavior when executed
446
+ | help: use `MaybeUninit<T>` instead, and only call `assume_init` after initialization is done
447
+ |
448
+ = note: raw pointers must not be uninitialized
449
+
450
+ error: the type `*const [()]` does not permit being left uninitialized
451
+ --> $DIR/uninitialized-zeroed.rs:113:33
452
+ |
453
+ LL | let _val: *const [()] = mem::uninitialized();
454
+ | ^^^^^^^^^^^^^^^^^^^^
455
+ | |
456
+ | this code causes undefined behavior when executed
457
+ | help: use `MaybeUninit<T>` instead, and only call `assume_init` after initialization is done
458
+ |
459
+ = note: raw pointers must not be uninitialized
460
+
428
461
error: the type `&i32` does not permit zero-initialization
429
- --> $DIR/uninitialized-zeroed.rs:107 :34
462
+ --> $DIR/uninitialized-zeroed.rs:116 :34
430
463
|
431
464
LL | let _val: &'static i32 = mem::transmute(0usize);
432
465
| ^^^^^^^^^^^^^^^^^^^^^^
@@ -437,7 +470,7 @@ LL | let _val: &'static i32 = mem::transmute(0usize);
437
470
= note: references must be non-null
438
471
439
472
error: the type `&[i32]` does not permit zero-initialization
440
- --> $DIR/uninitialized-zeroed.rs:108 :36
473
+ --> $DIR/uninitialized-zeroed.rs:117 :36
441
474
|
442
475
LL | let _val: &'static [i32] = mem::transmute((0usize, 0usize));
443
476
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -448,7 +481,7 @@ LL | let _val: &'static [i32] = mem::transmute((0usize, 0usize));
448
481
= note: references must be non-null
449
482
450
483
error: the type `NonZeroU32` does not permit zero-initialization
451
- --> $DIR/uninitialized-zeroed.rs:109 :32
484
+ --> $DIR/uninitialized-zeroed.rs:118 :32
452
485
|
453
486
LL | let _val: NonZeroU32 = mem::transmute(0);
454
487
| ^^^^^^^^^^^^^^^^^
@@ -459,7 +492,7 @@ LL | let _val: NonZeroU32 = mem::transmute(0);
459
492
= note: `std::num::NonZeroU32` must be non-null
460
493
461
494
error: the type `NonNull<i32>` does not permit zero-initialization
462
- --> $DIR/uninitialized-zeroed.rs:112 :34
495
+ --> $DIR/uninitialized-zeroed.rs:121 :34
463
496
|
464
497
LL | let _val: NonNull<i32> = MaybeUninit::zeroed().assume_init();
465
498
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -470,7 +503,7 @@ LL | let _val: NonNull<i32> = MaybeUninit::zeroed().assume_init();
470
503
= note: `std::ptr::NonNull<i32>` must be non-null
471
504
472
505
error: the type `NonNull<i32>` does not permit being left uninitialized
473
- --> $DIR/uninitialized-zeroed.rs:113 :34
506
+ --> $DIR/uninitialized-zeroed.rs:122 :34
474
507
|
475
508
LL | let _val: NonNull<i32> = MaybeUninit::uninit().assume_init();
476
509
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -481,7 +514,7 @@ LL | let _val: NonNull<i32> = MaybeUninit::uninit().assume_init();
481
514
= note: `std::ptr::NonNull<i32>` must be non-null
482
515
483
516
error: the type `bool` does not permit being left uninitialized
484
- --> $DIR/uninitialized-zeroed.rs:114 :26
517
+ --> $DIR/uninitialized-zeroed.rs:123 :26
485
518
|
486
519
LL | let _val: bool = MaybeUninit::uninit().assume_init();
487
520
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -491,5 +524,5 @@ LL | let _val: bool = MaybeUninit::uninit().assume_init();
491
524
|
492
525
= note: booleans must be either `true` or `false`
493
526
494
- error: aborting due to 40 previous errors
527
+ error: aborting due to 43 previous errors
495
528
0 commit comments