blob: 92b21c4efa3a2a992fec62fd6bbefa9eedd10361 (
plain)
1
2
3
4
5
6
7
8
|
#![feature(core_intrinsics)]
use std::intrinsics::{init};
// Test that the `init` intrinsic is really unsafe
pub fn main() {
let stuff = init::<isize>(); //~ ERROR call to unsafe function is unsafe
}
|