Skip to content

Commit ddec8c5

Browse files
committed
Ignore unsized types when trying to determine the size of a type
1 parent 502ce82 commit ddec8c5

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

compiler/rustc_lint/src/reference_casting.rs

+7
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,13 @@ fn is_cast_to_bigger_memory_layout<'tcx>(
207207
}
208208

209209
let from_layout = cx.layout_of(*inner_start_ty).ok()?;
210+
211+
// if the type isn't sized, we bail out, instead of potentially giving
212+
// the user a meaningless warning.
213+
if from_layout.is_unsized() {
214+
return None;
215+
}
216+
210217
let alloc_layout = cx.layout_of(alloc_ty).ok()?;
211218
let to_layout = cx.layout_of(*inner_end_ty).ok()?;
212219

tests/ui/lint/reference_casting.rs

+5
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,11 @@ unsafe fn bigger_layout() {
239239
//~^ ERROR casting references to a bigger memory layout
240240
}
241241

242+
{
243+
let x: Box<dyn Send> = Box::new(0i32);
244+
let _z = unsafe { &*(&*x as *const dyn Send as *const i32) };
245+
}
246+
242247
unsafe fn from_ref(this: &i32) -> &i64 {
243248
&*(this as *const i32 as *const i64)
244249
}

0 commit comments

Comments
 (0)