solidity/test/libsolidity/semanticTests/abiEncoderV1/bool_out_of_bounds.sol
2022-05-19 20:23:28 +02:00

12 lines
272 B
Solidity

pragma abicoder v1;
contract C {
function f(bool b) public pure returns (bool) { return b; }
}
// ====
// ABIEncoderV1Only: true
// compileViaYul: false
// ----
// f(bool): true -> true
// f(bool): false -> false
// f(bool): 0x000000 -> false
// f(bool): 0xffffff -> true