solidity/test/libsolidity/semanticTests/various/byte_optimization_bug.sol
2020-03-19 14:42:25 +01:00

20 lines
338 B
Solidity

contract C {
function f(uint256 x) public returns (uint256 a) {
assembly {
a := byte(x, 31)
}
}
function g(uint256 x) public returns (uint256 a) {
assembly {
a := byte(31, x)
}
}
}
// ====
// compileViaYul: also
// ----
// f(uint256): 2 -> 0
// g(uint256): 2 -> 2