2017-08-02 17:35:44 -05:00
|
|
|
// Validation makes this fail in the wrong place
|
|
|
|
// compile-flags: -Zmir-emit-validate=0
|
|
|
|
|
2016-11-15 07:12:49 -06:00
|
|
|
fn main() {
|
|
|
|
let g = unsafe {
|
|
|
|
std::mem::transmute::<usize, fn(i32)>(42)
|
|
|
|
};
|
|
|
|
|
2017-06-19 03:58:59 -05:00
|
|
|
g(42) //~ ERROR a memory access tried to interpret some bytes as a pointer
|
2016-11-15 07:12:49 -06:00
|
|
|
}
|