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