Skip to content

Commit 5ea57cc

Browse files
committedApr 22, 2016
bug: transmute::<*const T, Option<Box<T>>>(..)
1 parent feca813 commit 5ea57cc

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#![feature(custom_attribute)]
2+
#![allow(dead_code, unused_attributes)]
3+
4+
#[miri_run]
5+
fn option_box_deref() -> i32 {
6+
let val = Some(Box::new(42));
7+
unsafe {
8+
let ptr: *const i32 = std::mem::transmute(val); //~ ERROR: pointer offset outside bounds of allocation
9+
*ptr
10+
}
11+
}
12+
13+
fn main() {}

0 commit comments

Comments
 (0)
Please sign in to comment.