2020-02-06 11:24:38 +01:00
|
|
|
#![feature(core_intrinsics)]
|
|
|
|
fn main() {
|
|
|
|
// MIN/-1 cannot be represented
|
2020-03-04 13:01:06 +01:00
|
|
|
unsafe { std::intrinsics::unchecked_div(i16::MIN, -1); } //~ ERROR Overflow executing `unchecked_div`
|
2020-02-06 11:24:38 +01:00
|
|
|
}
|