solidity/test/libsolidity/semanticTests/viaYul/assert_and_require.sol
2023-05-11 10:56:55 -05:00

18 lines
384 B
Solidity

contract C {
function f(bool a) public pure returns (bool x) {
bool b = a;
x = b;
assert(b);
}
function f2(bool a) public pure returns (bool x) {
bool b = a;
x = b;
require(b);
}
}
// ----
// f(bool): true -> true
// f(bool): false -> FAILURE, hex"4e487b71", 0x01
// f2(bool): true -> true
// f2(bool): false -> FAILURE