solidity/test/libsolidity/semanticTests/exponentiation/small_exp.sol
2020-10-19 16:58:59 +02:00

15 lines
259 B
Solidity

contract test {
function f() public pure returns (uint r) {
uint32 x;
uint8 y;
assembly {
x := 0xfffffffffe
y := 0x102
}
unchecked { r = x**y; }
return r;
}
}
// ----
// f() -> 4