2021-05-14 18:54:46 +00:00
|
|
|
pragma abicoder v1;
|
2020-03-20 23:32:30 +00:00
|
|
|
contract C {
|
|
|
|
function f(bool _b) public returns (uint256) {
|
|
|
|
if (_b) return 1;
|
|
|
|
else return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
function g(bool _in) public returns (bool _out) {
|
|
|
|
_out = _in;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ====
|
|
|
|
// ABIEncoderV1Only: true
|
2022-05-13 16:41:55 +00:00
|
|
|
// compileViaYul: false
|
2020-03-20 23:32:30 +00:00
|
|
|
// ----
|
|
|
|
// f(bool): 0x0 -> 0x0
|
|
|
|
// f(bool): 0x1 -> 0x1
|
|
|
|
// f(bool): 0x2 -> 0x1
|
|
|
|
// f(bool): 0x3 -> 0x1
|
|
|
|
// f(bool): 0xff -> 0x1
|
|
|
|
// g(bool): 0x0 -> 0x0
|
|
|
|
// g(bool): 0x1 -> 0x1
|
|
|
|
// g(bool): 0x2 -> 0x1
|
|
|
|
// g(bool): 0x3 -> 0x1
|
|
|
|
// g(bool): 0xff -> 0x1
|