11 lines
330 B
Rust
11 lines
330 B
Rust
#![feature(intrinsics)]
|
|
|
|
// Directly call intrinsic to avoid debug assertions in libstd
|
|
extern "rust-intrinsic" {
|
|
fn float_to_int_unchecked<Float: Copy, Int: Copy>(value: Float) -> Int;
|
|
}
|
|
|
|
fn main() {
|
|
unsafe { float_to_int_unchecked::<f32, i32>(-2147483904.0f32); } //~ ERROR: cannot be represented in target type `i32`
|
|
}
|