|
1 | 1 | #![feature(core_intrinsics)]
|
| 2 | +#![feature(const_int_unchecked_arith)] |
2 | 3 |
|
3 | 4 | use std::intrinsics;
|
4 | 5 |
|
@@ -117,4 +118,25 @@ const SHR_I64_NEG_RANDOM: i64 = unsafe { intrinsics::unchecked_shr(5_i64, -30) }
|
117 | 118 | const SHR_I128_NEG_RANDOM: i128 = unsafe { intrinsics::unchecked_shr(5_i128, -93) };
|
118 | 119 | //~^ ERROR any use of this value will cause an error
|
119 | 120 |
|
| 121 | +// Other arithmetic functions: |
| 122 | + |
| 123 | +const _: u16 = unsafe { std::intrinsics::unchecked_add(40000u16, 30000) }; |
| 124 | +//~^ ERROR any use of this value will cause an error |
| 125 | + |
| 126 | +const _: u32 = unsafe { std::intrinsics::unchecked_sub(14u32, 22) }; |
| 127 | +//~^ ERROR any use of this value will cause an error |
| 128 | + |
| 129 | +const _: u16 = unsafe { std::intrinsics::unchecked_mul(300u16, 250u16) }; |
| 130 | +//~^ ERROR any use of this value will cause an error |
| 131 | + |
| 132 | +const _: i32 = unsafe { std::intrinsics::unchecked_div(1, 0) }; |
| 133 | +//~^ ERROR any use of this value will cause an error |
| 134 | +const _: i32 = unsafe { std::intrinsics::unchecked_div(i32::min_value(), -1) }; |
| 135 | +//~^ ERROR any use of this value will cause an error |
| 136 | + |
| 137 | +const _: i32 = unsafe { std::intrinsics::unchecked_rem(1, 0) }; |
| 138 | +//~^ ERROR any use of this value will cause an error |
| 139 | +const _: i32 = unsafe { std::intrinsics::unchecked_rem(i32::min_value(), -1) }; |
| 140 | +//~^ ERROR any use of this value will cause an error |
| 141 | + |
120 | 142 | fn main() {}
|
0 commit comments