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