Skip to content

Commit 96a2e65

Browse files
committed
Add more tests, add docs for is_mem_uninit field
1 parent dc4b6a9 commit 96a2e65

File tree

3 files changed

+380
-30
lines changed

3 files changed

+380
-30
lines changed

compiler/rustc_lint/src/builtin.rs

+8-1
Original file line numberDiff line numberDiff line change
@@ -2366,7 +2366,14 @@ impl<'tcx> LateLintPass<'tcx> for InvalidValue {
23662366
#[derive(Debug, Copy, Clone, PartialEq)]
23672367
enum InitKind {
23682368
Zeroed,
2369-
Uninit { is_mem_uninit: bool },
2369+
/// `is_mem_uninit` is true *only* if this is a call to `mem::uninitialized()`, not if
2370+
/// this is a `MaybeUninit::uninit().assume_init()`.
2371+
///
2372+
/// This lets us avoid duplicate errors being shown, for code that matches the
2373+
/// mem_uninitialized FCW.
2374+
Uninit {
2375+
is_mem_uninit: bool,
2376+
},
23702377
}
23712378

23722379
impl InitKind {

src/test/ui/intrinsics/mem-uninitialized-future-compat.rs

+39
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,19 @@ struct UninitStruct {
99
b: char,
1010
}
1111

12+
enum OneVariant {
13+
Hello,
14+
}
15+
16+
enum TwoVariant {
17+
Hello,
18+
Goodbye,
19+
}
20+
21+
enum OneVariantWith<T> {
22+
Hello(T),
23+
}
24+
1225
unsafe fn unknown_type<T, const N: usize>() {
1326
std::mem::uninitialized::<T>();
1427
//~^ ERROR the type `T` is generic, and might not permit being left uninitialized
@@ -22,6 +35,12 @@ unsafe fn unknown_type<T, const N: usize>() {
2235
std::mem::uninitialized::<[UninitStruct; N]>();
2336
//~^ ERROR the type `[UninitStruct; N]` is generic, and might not permit being left uninitialized
2437

38+
std::mem::uninitialized::<Result<T, !>>();
39+
//~^ ERROR the type `std::result::Result<T, !>` does not permit being left uninitialized
40+
41+
std::mem::uninitialized::<OneVariantWith<T>>();
42+
//~^ ERROR the type `OneVariantWith<T>` is generic, and might not permit being left uninitialized
43+
2544
std::mem::uninitialized::<[T; 0]>();
2645
std::mem::uninitialized::<[char; 0]>();
2746
}
@@ -58,10 +77,30 @@ fn main() {
5877
std::mem::uninitialized::<(u32, char)>();
5978
//~^ ERROR the type `(u32, char)` does not permit being left uninitialized
6079

80+
std::mem::uninitialized::<TwoVariant>();
81+
//~^ ERROR the type `TwoVariant` does not permit being left uninitialized
82+
83+
std::mem::uninitialized::<Result<!, !>>();
84+
//~^ ERROR the type `std::result::Result<!, !>` does not permit being left uninitialized
85+
86+
std::mem::uninitialized::<Result<!, u32>>();
87+
//~^ ERROR the type `std::result::Result<!, u32>` does not permit being left uninitialized
88+
89+
std::mem::uninitialized::<Option<!>>();
90+
//~^ ERROR the type `std::option::Option<!>` does not permit being left uninitialized
91+
92+
std::mem::uninitialized::<OneVariantWith<char>>();
93+
//~^ ERROR the type `OneVariantWith<char>` does not permit being left uninitialized
94+
95+
std::mem::uninitialized::<OneVariantWith<!>>();
96+
//~^ ERROR the type `OneVariantWith<!>` does not permit being left uninitialized
97+
6198
std::mem::uninitialized::<MaybeUninit<Box<u32>>>();
6299
std::mem::uninitialized::<usize>();
63100
std::mem::uninitialized::<f32>();
64101
std::mem::uninitialized::<*const u8>();
65102
std::mem::uninitialized::<[u8; 64]>();
103+
std::mem::uninitialized::<OneVariant>();
104+
std::mem::uninitialized::<OneVariantWith<u32>>();
66105
}
67106
}

0 commit comments

Comments
 (0)