2017-08-02 15:35:44 -07:00
|
|
|
// Validation makes this fail in the wrong place
|
2018-10-12 10:54:37 +02:00
|
|
|
// compile-flags: -Zmir-emit-validate=0 -Zmiri-disable-validation
|
2017-08-02 15:35:44 -07:00
|
|
|
|
2016-11-15 14:12:49 +01:00
|
|
|
fn main() {
|
|
|
|
let g = unsafe {
|
|
|
|
std::mem::transmute::<usize, fn(i32)>(42)
|
|
|
|
};
|
|
|
|
|
2018-07-15 11:21:56 +02:00
|
|
|
g(42) //~ ERROR constant evaluation error
|
2018-05-09 17:45:16 +02:00
|
|
|
//~^ NOTE a memory access tried to interpret some bytes as a pointer
|
2016-11-15 14:12:49 +01:00
|
|
|
}
|