rust/tests/compile-fail/validation_undef.rs
2017-09-16 12:11:48 +02:00

15 lines
247 B
Rust

#![allow(unused_variables)]
// error-pattern: attempted to read undefined bytes
mod safe {
use std::mem;
pub(crate) fn make_float() -> f32 {
unsafe { mem::uninitialized() }
}
}
fn main() {
let _x = safe::make_float();
}